Parallel Web Service Calls in Java

In any case, to make web service calls from a Java client application. (Apache Axis based) in parallel? Does the asynchronous-style web service client (based on Apache Axis) help?

+4
source share
1 answer

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

And what you can do in your client is simply launch new topics that invoke the web service.

+2
source

Source: https://habr.com/ru/post/1310070/


All Articles