Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for the best way to consume a Java web service that returns rather large and complex objects.

I am currently using Apache Axis clients generated from the wsdl, (using eclipse "generate web service client" tool). We have concerns about performance of this. The service proxy objects are not thread safe, and they are rather heavy to instantiate, 2-3 MB on the JVM.

The other alternative is making HTTP connections and building a String SOAP requests. I would have to interpret the response, and build objects from the XML. Would this be a better alternative to the heavy axis objects?

I searched for good reading on this, if any one had any links I would greatly appreciate it.

share|improve this question

1 Answer

up vote 0 down vote accepted

In general, I found that through performance testing. Pure Soap requests are much more efficient that the ApacheAxis clients. The soap requests make it necessary for you to write your own XML parsing code, but in my case, I found the performance gains worth it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.