7 Replies Latest reply on Nov 15, 2012 9:48 PM by ffang

    http:conduit not used for HTTPS

    muruga.mani

      <http:conduit name="*.http-conduit">

                <http:tlsClientParameters secureSocketProtocol="SSL">

                     <sec:keyManagers keyPassword="xxxxxx">

                          <sec:keyStore type="JKS" password="xxxxx" file="C:/Temp/testcert.jks" />

                     </sec:keyManagers>

                     <sec:trustManagers>

                          <sec:keyStore type="JKS" password="xxxxx" file="C:/Temp/testcert.jks" />

                     </sec:trustManagers>

                     <sec:cipherSuitesFilter>

                          <sec:include>..</sec:include>

                     </sec:cipherSuitesFilter>

                </http:tlsClientParameters>

                <http:client AllowChunking="true"/>

           </http:conduit>

       

       

      I have to consume a HTTPS webservice and with the http:conduit above, I couldn't really invoke the secured webservice.  I have to use the JVM parameters in order to invoke the webservice.

       

      Any thoughts on what is missing here.