views:

69

answers:

2

I'm not a Java programmer by any sense, so I apologize if this is a stupid question. I have a service that was given to me, that basically searches the inventory of a future partner. The file they sent is a compiled .jar file, and a wsdl file. The read me file states that it can be used with XFire or CXF. The question is, how do I set this service up using Apache, Tomcat, Spring, or whatever else I need to do? It's a fairly broad question, but I am at a loss as to what to do here.

A: 

Your choices are as follows:

  1. Hire a Java programmer, or
  2. Become a Java programmer yourself.

In your shoes, I'd opt for #1. You probably have enough on your plate running your business to learn the ins and outs of coding.

rtperson
Probably for the best, thanks.
A: 

Most likely the jar file you have got the client sdk (compiled from the wsdl). So you should be able to figure our an entry point class there and use that to call the webservice. But as others suggested very little information to really give an answer.

Aswin