在设置超时之后,依然在60秒后保超时错误,很是无语,网上也找了很久,API 也看了。最后发现是1.5的Axis2 由此bug。用1.6.2版本之后就没有问题了。
Axis2 java.net.SocketTimeoutException: Read timed out
@import url(http://www.blogjava.net/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);
//设置超时
// This enables the user to pass in socket timeout value as an Integer. If nothing is set, the default value is 60000 milliseconds.
options.setProperty(HTTPConstants.SO_TIMEOUT, new Integer(600000));
// This enables the user to pass in connection timeout value as an Integer. If nothing is set, the default value is 60000 milliseconds.
options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, new Integer(600000));
options.setTimeOutInMilliSeconds(600000L);