1.5版Axis2 timeout問題
在設置超時之后,依然在60秒后保超時錯誤,很是無語,網上也找了很久,API 也看了。最后發現是1.5的Axis2 由此bug。用1.6.2版本之后就沒有問題了。
Axis2 java.net.SocketTimeoutException: Read timed out
@import url(http://www.aygfsteel.com/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);
posted on 2014-11-24 17:17 科菱財神 閱讀(1416) 評論(0) 編輯 收藏 所屬分類: Webservice