我对SOAP ui和eclipse项目的SOAP请求有问题。尝试提出肥皂请求位于java.net.SocketTimeoutException:读取超时状态。但是,我已经连接到服务器,可以通过浏览器浏览网址并使用chrome插件执行请求。
任何人都知道发生了什么事吗?
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://schemas.meta4.com/">
<soapenv:Header/>
<soapenv:Body>
<sch:login>
<sch:in0>xx</sch:in0>
<sch:in1>XX</sch:in1>
<sch:in2>3</sch:in2>
</sch:login>
</soapenv:Body>
</soapenv:Envelope>
URL : http://172.22.245.34/services/Login
这是预期的结果:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<loginResponse xmlns="http://schemas.meta4.com/">
<loginReturn>
<sessionID>F77DD0A8FE9559B9BD633831B876D681</sessionID>
</loginReturn>
</loginResponse>
</soapenv:Body>
</soapenv:Envelope>