如何在camel cxf中设置客户端连接超时。 以下链接提出了同样的问题, Camel CXF: Soap client timeout
但是如何将http-conf:conduit应用到cxf设置中。 有人可以提供样品吗?
答案 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