apache camel cxf soap客户端示例连接超时设置

时间:2018-03-08 04:20:53

标签: camel-cxf

如何在camel cxf中设置客户端连接超时。 以下链接提出了同样的问题, Camel CXF: Soap client timeout

但是如何将http-conf:conduit应用到cxf设置中。 有人可以提供样品吗?

1 个答案:

答案 0 :(得分:0)

试试这个。请注意,http-conf:client而不是http-conf:conduit设置了连接超时。声明以下代码段,不要忘记将SoapPort替换为您自己的代码。

<http-conf:conduit name="{http://apache.org/hello_world_soap_http}SoapPort.http-conduit">
    <http-conf:client Connection="Keep-Alive" MaxRetransmits="1"  AllowChunking="false" />
</http-conf:conduit>

更多详情here