我有一个非常简单的Java Web服务:
package tst;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
@WebService
public class TstService {
@WebMethod
public int tst(String data, String response)
{
response ="Ok";
return 1;
}
public static void main(String[] args ){
Endpoint.publish("http://0.0.0.0:1234/TstService", new TstService());
}
}
我有运行在Windows上的客户端应用程序。客户端应用程序可以很好地加载此请求者WSDL,但是在调用返回错误期间:
The underlying connection was closed: The connection was closed unexpectedly
我们没有客户端应用程序源代码,但我认为这是.NET应用程序。 解决此问题的最佳方法是什么?