示例简单的异步soap服务

时间:2016-10-18 08:48:25

标签: java asynchronous soap

请给我一个与Java SE客户端的异步ws服务的简单示例。我已经尝试过做的事情:使用1方法暴露它并创建wsdl创建简单的简单服务,然后生成一些类。

我希望实现我可以公开的服务:

Endpoint.publish("http://localhost:1234/SimpleWSImpl", new SimpleWSImpl());

并使用java客户端

http://localhost:1234/SimpleWSImpl上发送soap

我无法理解如何实施这些方法:

@WebMethod
public Response<SayHelloResponse> sayHelloAsync(SayHello parameters) {
    return null;
}

@WebMethod
public Future<?> sayHelloAsync(SayHello parameters, AsyncHandler<SayHelloResponse> asyncHandler) {
    return null;
}

@WebMethod
public SayHelloResponse sayHello(SayHello parameters) {
    return null;
}

请使用代码示例

提供github的链接

0 个答案:

没有答案