我使用wsimport生成了一个Web服务客户端。但是,在调用服务时,结果为none。似乎有很多关于使用wsimport的教程,但几乎没有使用生成的客户端。
调用客户端的代码如下所示:
URL wsdl = new URL("http:example.com:8080/TestServiceWeb/testService.wsdl");
TestService testService = new TestService(wsdl,new QName("http:test.com/test","TestService");
TestServicePortType testServicePort = testService.getTestServicePortSoap11();
TestResult result = testServicePort.doTest();
testServicePort返回的结果为null。 Wireshark数据包嗅探器显示没有流量发送到Web服务。
答案 0 :(得分:0)
您可以在某处托管此网络服务,以便我们进行快速测试吗?