问题
我正在接管Java Web服务客户端的开发,为了测试演变,我必须从远程Web服务服务器(嵌入在tomcat实例中运行的Apache Axis2中)请求一种方法。
首先,我使用服务器提供的 WSDL 通过 SOAP UI 请求该方法。它工作正常。
现在,我尝试通过我的 Java Web 服务客户端请求该方法,但是即使使用 SOAP UI 的测试证明它一切正常,我也无法连接到服务器。
Java Web 服务客户端依赖于 Spring-WS。
从客户端调用 Web 服务
// Setting the kycScoreRequest
...
// Trying to connect and to get the kycScoreResponse
KycScoreResponse kycScoreResponse = (KycScoreResponse) getWebServiceTemplate().marshalSendAndReceive(kycScoreRequest);
由此产生的错误
[main] DEBUG com.foo.AbstractMain - org.springframework.ws.client.WebServiceIOException: I/O error: Connection timed out: connect; nested exception is java.net.ConnectException: Connection timed out: connect
at org.springframework.ws.client.core.WebServiceTemplate.sendAndReceive(WebServiceTemplate.java:545)
at org.springframework.ws.client.core.WebServiceTemplate.marshalSendAndReceive(WebServiceTemplate.java:386)
at org.springframework.ws.client.core.WebServiceTemplate.marshalSendAndReceive(WebServiceTemplate.java:380)
at org.springframework.ws.client.core.WebServiceTemplate.marshalSendAndReceive(WebServiceTemplate.java:372)
at com.foo.MainKycScore.getReturn(MainKycScore.java:37)
at com.foo.MainKycScore.main(MainKycScore.java:244)
Caused by: java.net.ConnectException: Connection timed out: connect
at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at org.apache.http.conn.scheme.PlainSocketFactory.connectSocket(PlainSocketFactory.java:121)
at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:180)
at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:326)
at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:610)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:445)
at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:835)
at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:108)
at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:56)
at org.springframework.ws.transport.http.HttpComponentsConnection.onSendAfterWrite(HttpComponentsConnection.java:119)
at org.springframework.ws.transport.AbstractWebServiceConnection.send(AbstractWebServiceConnection.java:47)
at org.springframework.ws.client.core.WebServiceTemplate.sendRequest(WebServiceTemplate.java:624)
at org.springframework.ws.client.core.WebServiceTemplate.doSendAndReceive(WebServiceTemplate.java:587)
at org.springframework.ws.client.core.WebServiceTemplate.sendAndReceive(WebServiceTemplate.java:539)
... 5 more
假设 1 : 我是否使用正确的 Web 服务 URL?
我有点确定 Spring 得到了正确的 URL,因为它与我接管代码之前相同,并且 wsdl 和服务器没有任何变化(我们的客户从未抱怨过,它为他工作,但从未在我们的机器上工作。所以不要问我之前的开发人员是如何测试它的,尽管它不起作用,因为 idk):
WebServiceGatewaySupport.setDefaultUri("http://82.36.138.182:8080/axis2/services/KYCService01.KYCService01HttpSoap11Endpoint/")
我在 WSDL 中有以下内容:
<wsdl:service name="KYCService01">
<wsdl:port name="KYCService01HttpSoap11Endpoint" binding="ns:KYCService01Soap11Binding">
<soap:address location="http://82.36.138.182:8080/axis2/services/KYCService01.KYCService01HttpSoap11Endpoint/"/>
</wsdl:port>
</wsdl:service>
我也尝试将 EPR 作为 url,但它不会改变任何东西:
WebServiceGatewaySupport.setDefaultUri("http://82.36.138.182:8080/axis2/services/KYCService01")
假设2:是我背后的代理吗?
然后,我认为错误一定是由于我落后的代理引起的。事实上,当我尝试编写一小段代码来连接到 wsdl url 时,起初我做不到,并且得到了"连接超时"。为了解决这个问题,我将代理设置为 java 系统属性,现在允许我从 Web 服务客户端访问 wsdl。
设置代理
System.setProperty("http.proxyHost", "<my_proxy_hostname>");
System.setProperty("http.proxyPort", "<my_proxy_port>");
连接到 WSDL 网址
URL wsdlAddress = null;
HttpURLConnection connection = null;
wsdlAdress = new URL("<wsdl_url>");
connection = (HttpURLConnection) wsdlAdress.openConnection();
connection.connect(); // It works if the proxy is set as System properties
不幸的是,当我尝试使用我的代理集调用 Web 服务服务器时,我仍然遇到与上面提到的完全相同的错误。现在我已经没有想法了。我的 Java 客户端怎么可能访问 Web 服务 WSDL,但不能访问其方法?
(编辑)假设3:是http标头吗?
由于膜拦截器,我从SOAP UI和WS客户端拦截了HTTP msg。请参阅标题:
肥皂用户界面
POST http://82.36.138.182:8080/axis2/services/KYCService01.KYCService01HttpSoap11Endpoint/ HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: "urn:kycScore"
Content-Length: 1301
Host: 84.37.138.182:8080
Proxy-Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
WS客户端(目标URL是一个SOAP UI模拟服务器,因为显然,如果我使用我真正尝试连接的URL,则不会发送任何内容,因此不会拦截任何内容)
POST /mock HTTP/1.1
Accept-Encoding: gzip
Accept: text/xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
SOAPAction: ""
Content-Type: text/xml; charset=utf-8
Content-Length: 1032
Host: localhost:8088
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_101)
我对http标头一无所知,但主要区别似乎是SOAPAction。我将 ws 客户端消息的 SOAPAction 属性设置为与 SOAP UI 相同的值,但它没有更改任何内容。
public Object marshalWithSoapActionHeader(KycScore o) {
return getWebServiceTemplate().marshalSendAndReceive(o, new WebServiceMessageCallback() {
public void doWithMessage(WebServiceMessage message) {
((SoapMessage) message).setSoapAction("urn:kycScore");
}
});
}
否则,我们在用户代理属性中看到的java版本是否可能很重要?(编辑)我不这么认为,因为我尝试使用 1.6 jre,并且用户代理属性中的版本确实发生了变化,但我仍然有同样的错误。
总结故障排除提示,以尝试在评论中总结冗长的讨论:
- 尝试检查是否缺少任何必需的标头。
- 尝试访问服务的易于连接的运行状况检查或 ping 终结点。 如果连接超时
- 持续,请尝试减少连接超时。
- 如果无法连接,请检查防火墙规则。
- 使用内部开发的自定义客户端库时,请尝试联系了解该库的开发人员寻求帮助。
- 使用自定义客户端库时,请附加要调试的源。
- 尝试复制一个模板,如myKong的SOAP网络服务示例,如果你可以侥幸逃脱的话。
请检查IE浏览器中的代理设置
可能的解决方案 1. 请尝试从浏览器访问 WSDL 2. 请查看是否已在 SOAP UI 中配置任何授权标头或代理设置