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
1
vote
3 answers

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 customers don't know webservices very well and…
Olvagor
  • 2,332
  • 5
  • 25
  • 26
1
vote
2 answers

Can't locate an XML file inside a META-INF directory

I've set up a web service I'm trying to debug in Eclipse. It has a directory structure like this: Root /   + src   + META-INF   + WEB-INF Inside the META-INF directory, there is a folder \xfire\services.xml. When I start the server, I…
madgangmixers
  • 150
  • 1
  • 16
1
vote
2 answers

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 possible? The example structure is: Domain class…
Stucks
1
vote
2 answers

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(); GeoIPServiceSoap geoIPClient =…
D. Wroblewski
  • 7,530
  • 4
  • 27
  • 30
1
vote
2 answers

Trouble Consuming Java Web Service with .NET Client

WCF newbie here, I am attempting to make a .NET 4.0 client consume a web service hosted in JBOSS. I believe the results from the web service are being serialized using x-fire. The client side is using WCF to connect to the service. This in an…
Justin Largey
  • 1,934
  • 1
  • 16
  • 21
0
votes
1 answer

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. Can anybody tell me if I remove the JAXB…
Saurabh Kumar
  • 16,353
  • 49
  • 133
  • 212
0
votes
2 answers

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: XFireServlet XFireServlet
zeus
  • 1
0
votes
2 answers

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 running 'A' at multiple places. We thought of…
instanceOfObject
  • 2,936
  • 5
  • 49
  • 85
0
votes
1 answer

wss4j:1.6.5 - Add BinarySecurityToken to SOAP request

We have an old application written in Java that uses and old version of wss4j to generate the SOAP requests and xFire to transmit those requests. This project uses a few dependencies that I believe are relevant: wss4j (1.6.5) xfire-all…
MattWeiler
  • 789
  • 1
  • 12
  • 21
0
votes
1 answer

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
Swati
  • 1
  • 1
  • 1
0
votes
1 answer

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 b.author=pAuthor println b.name …
laxmi
  • 107
  • 5
0
votes
1 answer

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 password then need to call login controller auth action…
laxmi
  • 107
  • 5
0
votes
1 answer

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 it's working fine. Now I want to make it a web service. By searching the web I found xfire plug in and installed it in my app and followed instructions as: Made…
laxmi
  • 865
  • 6
  • 17
  • 27
0
votes
1 answer

Can I use Xfire with SpringBoot?

My application uses Xfire as a web service client, It a legacy system where service is written in Perl, I am modifying/rewriting application with Spring boot, when I add the Maven dependency, it shows error when I try to build
Sadia H
  • 115
  • 1
  • 2
  • 10
0
votes
1 answer

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!
Freesnöw
  • 30,619
  • 30
  • 89
  • 138