我们有一个asmx网络服务。我必须使用WSDL测试客户端。我已经成功实现了客户端异步映射的代码。问题是我无法理解客户端如何同时向服务器发出多个请求。我见过Future
接口,但我不明白如何使用它进行并发调用。
private void callAsyncCallback(String encodedString, String key) {
DataManipulation service = new DataManipulation();
try { // Call Web Service Operation(async. callback)
DataManipulationSoap port = service.getDataManipulationSoap12();
// TODO initialize WS operation arguments here
AsyncHandler<GetDataResponse> asyncHandler =
new AsyncHandler<GetDataResponse>() {
@Override
public void handleResponse(Response<GetDataResponse> response) {
try {
// TODO process asynchronous response here
System.out.println("Output at::: " + new Date().toString());
System.out.println("************************Result = " + response.get().getGetDataResult());
} catch (Exception ex) {
// TODO handle exception
}
}
};
Future<? extends Object> result = port.getDataAsync(encodedString,key, asyncHandler);
while (!result.isDone()) {
// do something
}
} catch (Exception ex) {
// TODO handle custom exceptions here
}
}
我知道我可以在while(!result.isDone())
循环中执行某些操作但是如何再次在此处调用Web服务?
目的是我必须将多个文件发送到Web服务。 WS对这些文件执行一些操作并返回一些结果。我希望客户端同时发送所有文件,以便花费的时间非常少。我已经尝试在我的代码中多次调用方法callAsyncCallback
,但只有当第一个调用返回给客户端时才进入下一行。
修改
有人能给我一些指向ExecutorService的指针吗?我已经阅读了一些像invokeAll这样的选项,但是我无法将它与JAX-WS联系起来。任何帮助将不胜感激。
由于
答案 0 :(得分:0)
我强烈建议您在所有代码中始终使用ListenableFuture而不是Future 它更舒适,而不是你自己的自行车
示例:
ListeningExecutorService service = MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(10));
ListenableFuture<Explosion> explosion = service.submit(new Callable<Explosion>() {
public Explosion call() {
return pushBigRedButton();
}
});
Futures.addCallback(explosion, new FutureCallback<Explosion>() {
// we want this handler to run immediately after we push the big red button!
public void onSuccess(Explosion explosion) {
walkAwayFrom(explosion);
}
public void onFailure(Throwable thrown) {
battleArchNemesis(); // escaped the explosion!
}
});