cxf的webservice的Could not send Message_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > cxf的webservice的Could not send Message

cxf的webservice的Could not send Message

 2014/5/21 16:09:41  黑龙0110  程序员俱乐部  我要评论(0)
  • 摘要:今天测试webService,又遇到cxf的webservice的CouldnotsendMessage的问题,显示连接超时,解决办法:HTTPConduithttp=(HTTPConduit)cxfClient.getConduit();http.getClient().setReceiveTimeout(0);HTTPClientPolicyhttpClientPolicy=newHTTPClientPolicy();httpClientPolicy
  • 标签:Web Service Webservice not
今天测试webService,又遇到cxf的webservice的Could not send Message的问题,显示连接超时,解决办法:
class="java" name="code">

 HTTPConduit http = (HTTPConduit) cxfClient.getConduit();
 http.getClient().setReceiveTimeout(0);
 HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
 httpClientPolicy.setConnectionTimeout(6000000);// 连接超时(毫秒)
 httpClientPolicy.setAllowChunking(false);// 取消块编码
 httpClientPolicy.setReceiveTimeout(6000000);// 响应超时(毫秒)


加上这段代码就可以了,希望对大家有用。(该篇是在上篇基础上添加的)
发表评论
用户名: 匿名