0
我正在使用駱駝CXF終端連接到我的肥皂服務器。我想爲來自客戶端的請求添加超時。我正在使用continuationTimeout選項。但它不起作用。請求超時而不等待我配置的時間。駱駝CXF:肥皂客戶端超時
以下是我的端點配置。
<camel-cxf:cxfEndpoint id="tmAPIWSEndpoint" address="http://IN2NPDCEDB01:8088/webservices/services/TransportationManager"
wsdlURL="/wsdl/TransportationManager.wsdl"
endpointName="cis:TransportationManagerPort"
serviceName="cis:TransportationManagerService"
xmlns:cis="http://www.i2.com/cis"
continuationTimeout="60000">
<camel-cxf:properties>
<entry key="dataFormat" value="MESSAGE"/>
<entry key="username" value="XXX"/>
<entry key="password" value="XXX"/>
</camel-cxf:properties>
</camel-cxf:cxfEndpoint>
非常感謝。 'http-conf:conduit'解決了我的問題。 –