首页 > 其他 > 详细

1.5版Axis2 timeout问题

时间:2014-11-25 02:10:28      阅读:435      评论:0      收藏:0      [点我收藏+]

1.5版Axis2 timeout问题

在设置超时之后,依然在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);

1.5版Axis2 timeout问题

原文:http://www.blogjava.net/pzxsheng/archive/2014/11/24/420523.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!