我在eclipse中製作了一個Web服務客戶端導入第三方wsdl。java中的客戶端Webservice - 代理驗證
但我得到這個異常:
javax.xml.ws.WebServiceException: Connection IO Exception. Check nested exception for details. (Unable to connect to 1X.XXX.X.XX:X0 - Connection timed out).
我希望發生的僅代理此異常。
我和該第三方之間有代理服務器。我不知道如何做代理驗證和在編碼我需要這個代理驗證。
System.setProperty(「https.proxyHost」,「myproxyhost」); System.setProperty(「https.proxyPort」,「proxyport」); System.setProperty(「proxySet」,「true」); System.setProperty(「https.proxyUser」,「proxyUser」); \t \t System.setProperty(「https.proxyPassword」,「proxyPassword」); 我使用了這些語句。但它仍然給出錯誤'(無法連接到1x.2xx.x.xx:80 - 連接超時)。 ' – Abhishek
您可以執行ping,跟蹤路由或telnet到服務器嗎? – home
服務器運行良好。 :( – Abhishek