caught when processing request: Connection timed out: connect

我K! 这个困扰我许久的问题终于解决了……

 

报错:

2010-5-18 10:14:15 org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
信息: I/O exception (java.net.ConnectException) caught when processing request: Connection timed out: connect
2010-5-18 10:14:15 org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
信息: Retrying request

……(省略n行)

 

背景:

我背着本本做毕设(目前的步骤用Axis做ws),经常在公司、学校之间切换,每次从公司回来重新开启Tomcat,再执行客户端掉用我的ws就会报这样的错误。但是重新在客户端方用WSDL生成一遍CallbackHandle和stub文件,在就OK了。

原因:

Tomcat每次重新启动时,会重新的deploy存在于Axis下的ws,最重要的是:tomcat会根据当前服务器的IP自动配置WSDL中的service/port/adrress localtion——这个值就是我当前的IP地址……。真相大白于天下!很显然,由于Server端已经更换了服务地址,我再用旧的客户端stub就不行了。

解决方法:

很简单:替换stub文件中所有IP值为你当前的IP就可以了~


caught when processing request: Connection timed out: connect
 

你可能感兴趣的:(apache,tomcat,.net)