0

是否可以在 Apache Camel 中使用 http:conduit 元素和 https4 元素?

我只找到了将导管与 CXF 一起使用的示例。

这就是我想使用的:

  <http:conduit name="{http://www.company.com/product/orderEntry/service/1}OrderEntry.http-conduit">
<http:tlsClientParameters disableCNCheck="true">
  <sec:trustManagers>
    <sec:keyStore type="JKS" password="${trustStore.password}" file="${trustStore.file}"/>
  </sec:trustManagers>
  <sec:cipherSuitesFilter>
    <sec:include>.*_EXPORT_.*</sec:include>
    <sec:include>.*_EXPORT1024_.*</sec:include>
    <sec:include>.*_WITH_DES_.*</sec:include>
    <sec:include>.*_WITH_NULL_.*</sec:include>
    <sec:exclude>.*_DH_anon_.*</sec:exclude>
  </sec:cipherSuitesFilter>
</http:tlsClientParameters>

Apache Camel 如何知道在哪里绑定 http:conduit 信息?我应该检查哪个源类?

感谢所有评论

4

1 回答 1

0

正如我在评论中所说。这是不可能的(参见讨论: http: //fusesource.com/forums/message.jspa?messageID=15877)。在这里(http://camel.apache.org/http4.html#HTTP4-UsingtheJSSEConfigurationUtility)可以找到有关 https4 和 SSL 的说明

于 2013-06-05T11:05:44.830 回答