Tagged Questions
The xfire tag has no wiki summary.
4
votes
1answer
148 views
How to restore the original order of xsd:elements in xsd:sequence wrappers when websphere is upgraded?
So, there's a project around these parts that's pretty old. It's using Java 1.4 and XFire to produce code-first web services (I know, I know, best practices...). Anyways, the heads have recently ...
2
votes
1answer
553 views
Tomcat 6 XFire MTOM web service problem
I'm using XFire 1.2.6 on tomcat as web services implementation. Service is created using XFireProxyFactory and @EnableMTOM annotation. Client is also XFire and is using MTOM.
It all worked fine in ...
2
votes
1answer
534 views
How can I get the ServletRequest object from within an XFire AbstractHandler's invoke() method?
I'm using XFire as the Web Services provider for Spring Remoting. I'm using an AbstractHandler to authenticate the SOAP request. The idea is to identify the request by the originating server's domain ...
1
vote
1answer
51 views
Do we need the “Expect: 100-continue” header in the xfire request header?
I found the apache xfire has add one head parameter in its post header:
POST /testservice/services/TestService1.1 HTTP/1.1
SOAPAction: "testAPI" Content-Type: text/xml; charset=UTF-8
...
1
vote
1answer
235 views
wsdl java class case sensitivity
In the wsdl I have 2 types, same name, different cases: LoginResponse and LOGINRESPONSE.
If I use xfire to generate the java classes, it only generates one class, LoginResponse,
discarding the ...
1
vote
1answer
892 views
Spring 2.5.1 and Xfire 1.2.6 - NoSuchMethodError: <init>
Trying to integrate Spring 2.5.5 with Xfire 1.2.6, I'm attempting to inject one of my beans into my service but it's failing on initialisation with the following exception:
...
1
vote
2answers
402 views
Should I be using the xfire plugin with Gralis or is there a better way?
I have a web service in Grails, published using the xfire plugin. It's all fine and can be connected to no problem at all. But I'd like to modify the format of the request and response. Is that ...
1
vote
2answers
893 views
Is xfire client proxy thread safe?
When developing an application which consumes an external webservice I have generated the sources from the wsdl-url and then created a client:
GeoIPServiceClient service = new GeoIPServiceClient();
...
1
vote
0answers
377 views
grails xfire can't seem to send large blobs
I am running a groovy program that zips up some files and then I need to send that file to an XFIRE web service - what is the best way to get this done? the file(s) could be 1-5 Megs at most
Thanks!
...
1
vote
3answers
2k views
How to create documented WSDL using XFire
I use XFire to create a webservice wrapper around my application. XFire provides the webservice interface and WSDL at runtime (or creates them at compile time, don't know exactly).
Many of our ...
0
votes
1answer
7 views
Is JDK JAXB implemetation 100% matches XFIRE JAXB implementation
I have a maven project in which I am using Xfire.
Now recently i came to know that JDK 1.6 has JAXB implementation included. But when compared Xfire JAXB classes from JDK classes nothing matches.
...
0
votes
1answer
29 views
FileNotFoundException when using xFire
I am trying to expose an existing Java function as a web service using xfire.
I have added this in my web.xml:
<servlet>
<display-name>XFireServlet</display-name>
...
0
votes
2answers
26 views
Efficient and easy way to expose an existing function as web service
I have an existing application (say 'A') and I want to call a java function of this app from another app 'B'.
I don't want to put dependency of this app('A') in my calling application('B') to avoid ...
0
votes
0answers
44 views
Grails 2.0 and xfire plugin exception
I created simple Grails 2.0 service exposed with xfire plugin. With every call to this plugin I get exception, but WS is working fine. Is it normal? Only because of that server's log files gets huge.
...
0
votes
0answers
18 views
Jaxws webservice with xfire-all-1.2.6.jar. Cannot see wsdl
I have create a very simple web service using jaxws. The aim on this web service is to combine many external web services into one to create a single view solution, similar concept to a ESB.
So i ...
0
votes
0answers
31 views
How can I create Xfire web services from a Spring java console application rather than from web server
I have built a simple Java console application based on the Spring framework and I'm trying to use XFire to export some web services (so I can access them up from a C# GUI app).
I am trying to view ...
0
votes
0answers
47 views
Tomcat throwing UTF-8 start byte Exception
SEVERE: Servlet.service() for servlet XFireServletWs67 threw exception
java.io.CharConversionException: Invalid UTF-8 start byte 0x8b (at char #2, byte #-1)
at ...
0
votes
0answers
161 views
WstxParsingException: Expected a text token, got START_ELEMENT
I've got an error on a webservice i'm calling, this is the wsdl of the service
<wsdl:definitions xmlns:ns2="http://modelo.ws.services" xmlns:ns1="http://entidades.modelo.ws.services" ...
0
votes
0answers
17 views
exception org.codehaus.xfire.annotations.AnnotationException was occurred on glassfish3
I am facing following exception even my class BillValidation is contains annotation @WebService on glassfish3
org.codehaus.xfire.annotations.AnnotationException: Class ...
0
votes
1answer
66 views
how to provide authorisation to grails services using xfire plug in to grails spring security based application?
I have grails app using spring security plugin,i need to expose some of its services as web services so using xfire plugin,How can i give security to these services?,
With advance thanks,
Swati
0
votes
1answer
74 views
How to implement service using xfire in grails to store data in database?
Hi i am using xfire plugin in grails app,Belov is service written,
class HelloWorldService {
static expose=['xfire']
void addBook(String pName,String pAuthor) {
def b=new Book()
b.name=pName
...
0
votes
1answer
58 views
How to call a controller action from service using xfire plugin in grails?
I have grails app developed with spring security plugin.Now i need to make it web service so installed xfire plugin.Now i want to have a service which has a method with parameters username and ...
0
votes
0answers
73 views
How will xfire plugin in grails responds to client request for service?
I am using xfire plugin in my grails application..i just installed it in project and created a helloworld service as,
class HelloWorldService {
static expose=['xfire']
String serviceMethod() ...
0
votes
1answer
62 views
How to use xfire plugin in spring security based application developed with grails spring framework?
I have developed a small application in grails by using spring security plug in and its working fine,
Now i want to make it a web service,By googling i found xfire plug in and installed it in my app ...
0
votes
0answers
95 views
XFire webservice not generating wsdl
We use XFire to create webservice end points. We have two webservices in our application and both of them are in different context root. We have configured the webservices using services.xml as given ...
0
votes
0answers
106 views
SOAP namespace issue using XFire
I'm generating Java classes using XFire based on a WSDL. Unfortunately such a Webservice call leads in the backed to:
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope
...
0
votes
1answer
77 views
Injecting into games (Similar to xFire)
How does xFire place itself inside of games? Thanks if you can. I'm using vb.net so anything .net is helpful!
0
votes
0answers
278 views
Exception when creating a client in Xfire
I am getting the following exception when I build a client using Xfire:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/httpclient/Credentials
at ...
0
votes
0answers
252 views
ssl error on webservice invocation on jboss
I'm using jboss 5.1.0 GA as an application server, I have two war applications deployed, both running perfectly. One application, app1.war, it's a web application, that, in some point invokes a ...
0
votes
1answer
91 views
Flex portlets calling web service
Flex portlet is calling a webservice and I am intercepting the calls to check the session credentials using XFire AbstractHandler method implementation. But I am not getting the same httpsession value ...
0
votes
1answer
98 views
xfire: Intercepting Webservice header information
I have some webservices exposed through xfire and want to have security around those webservice calls. How can I add security without changing anything inside the web services? Basically I want to ...
0
votes
2answers
2k views
Calling axis2 web service from xfire client: The endpoint reference (EPR) for the Operation not found
I need to call axis2 web service with ws-security (username token) from xfire client over https. I could do the exercise via xfire dynamic client, but no luck with wsdl base client (i.e. generate java ...
-1
votes
1answer
74 views
Not enough message parts were received for the operation
Calling A java based Webservice and getting the exception:
Not enough message parts were received for the operation
Interface for my Webservice
public Object[] getIds(String query) throws ...