Hi,
I am wondering if it is possible to use http:conduit without CXF. I would
like to use it with https4 compnent. I was looking for examples but all I
have found is about CXF.
This is the part i would like to use with my https4 component:
<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>
</http:conduit>
How can I instruct Camel to consider this conduit with my https4 requests ?
Thanks!
--
View this message in context:
http://camel.465427.n5.nabble.com/using-http-conduit-without-CXF-tp5733744.html
Sent from the Camel - Users mailing list archive at Nabble.com.