Questions tagged [xfire]

Questions regarding Codehaus XFire framework

(from http://xfire.codehaus.org/) Codehaus XFire is a next-generation java SOAP framework. Codehaus XFire makes service oriented development approachable through its easy to use API and support for standards. It is also highly performant since it is built on a low memory StAX based model.

XFire is now CXF

User's looking to use XFire on a new project, should use CXF instead. CXF is a continuation of the XFire project and is considered XFire 2.0. It has many new features, a ton of bug fixes, and is now JAX-WS compliant! XFire will continue to be maintained through bug fix releases, but most development will occur on CXF now.

41 questions
5
votes
1 answer

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 User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT…
Vance
  • 386
  • 1
  • 6
  • 15
5
votes
1 answer

WSDL Client Generation not complete?

Just tried to generate java client generation from a WSDL file ( using XFire using XMLBeans binding ) I am able to generate the client + Fault Message ( no error ) , however input message and output message was not generated, it's also not…
Rudy
  • 7,008
  • 12
  • 50
  • 85
4
votes
1 answer

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 decided everyone needs Websphere 7 now! Upgrading to…
MetroidFan2002
  • 29,217
  • 16
  • 62
  • 80
3
votes
1 answer

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 LOGINRESPONSE. How do I get around this?
Lydon Ch
  • 8,637
  • 20
  • 79
  • 132
3
votes
0 answers

SOAP Web Service Client conflcts with xfire

I generated wsdl using wsimport from JDK 1.6. I then wrote a client to invoke the web service I got the following error. java.lang.IllegalStateException: Could not initialize Service. at…
2
votes
1 answer

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 and an API key (a-la Google Maps). The only…
Electric Monk
  • 2,192
  • 2
  • 23
  • 33
2
votes
1 answer

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 Tomcat 5.5.20, but fails in tomcat 6.0.20 for some…
Marko
  • 30,263
  • 18
  • 74
  • 108
2
votes
1 answer

Spring 2.5.1 and Xfire 1.2.6 - NoSuchMethodError:

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: java.lang.NoSuchMethodError: at…
Alex
  • 8,093
  • 6
  • 49
  • 79
1
vote
0 answers

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. The same error is with CXF plugin…
practical programmer
  • 1,604
  • 10
  • 15
1
vote
0 answers

Error: Spring 4 and Xfire 1.2.6

When I am integrating Xfire 1.2.6 with Spring4, I am getting following error: SEVERE: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xfire.customEditorConfigurer' defined in…
Jagrut Dalwadi
  • 295
  • 1
  • 4
  • 17
1
vote
1 answer

Consume Web service over ssl using XFire

My project use xfire as a web service client api. My project is in legacy Servlet/JSP. We used XFire eclipse plugin to generate client stub. Web-service has Migrated to SLL (HTTPS). Is there any easy way to consume Webservice over SSL in XFire. I…
Jafar Ali
  • 1,084
  • 3
  • 16
  • 39
1
vote
1 answer

how i can log on xfire with log4j for requests and responses in XML SOAP

Hi all I have a web service with xfire and spring 3.0, I need to send to logg requests and responses xml web service, I have been looking but can not find anything. hope you can help me as integrate with log4j. that my code in my servlet.xml: …
Elias Vargas
  • 1,126
  • 1
  • 18
  • 32
1
vote
0 answers

xfire web-service client gets null response

I use xfire to develop a web-service client in my Spring 3.x project, here are my code below WebServiceClient wClient = new WebServiceClient(); WebServiceSoap soap = wClient.getWebServiceSoap(Commons.VD_INFO_WSDL); com.webservice.object.GetVDInfo…
1
vote
1 answer

Migrating to CXF with Jaxb from xfire with agesi

I'm migrating my xfire soap project which uses aegis for databinding to cxf with jaxb. I got the new cxf project working for old xfire requests with aegis binding. But when i move the databinding to jaxb unmarshalling errror occurs. This is my cxf…
Viraj
  • 5,083
  • 6
  • 35
  • 76
1
vote
1 answer

Parsing XML in XFire cause CPU high?

My server is using XFire to handle web service request But its CPU was taken up to 100% or sometimes even 1000% When I restartd the server and after some request, this weird problem showed up again I scan the thread dump,the thread that take up CPU…
simplemx
  • 83
  • 7
1
2 3