java_pill
java_pill

Reputation: 843

Parallel Web Service Calls in Java

Is there anyway to make web service calls from a Java client app. (Apache Axis based) in parallel? Does async style Web Service client (Apache Axis based) help?

Upvotes: 4

Views: 2368

Answers (1)

Bozho
Bozho

Reputation: 597422

http://www.ibm.com/developerworks/webservices/library/ws-axis2/
http://www.infoq.com/news/2007/12/axis2-async

And a thing you can do in your client is to simply start new Threads that call the web-service.

Upvotes: 2

Related Questions