Improve your WEBServices Consumer Apps Making WS Invocations in Parallel
If your application is calling several WS and there is no need to do it in serial, you can implement a multithreaded approach: Example: … Class1Service class1Service = new Class1Service(); x = class1Service.getClass1Port(); setWSTimeout(x); // esto lo veremos en la siguiente seccion class Task implements Callable<Object> { private Object result; […]
More