All,

 

Anyone interested in talking to their Web services over HTTPS:

 

+1 on this post:
http://techpolesen.blogspot.com/2007/08/using-ssl-with-xfirecxf-battling
.html

 

and a snippet of my cxf.xml file to show how it looks:

 

<beans xmlns="http://www.springframework.org/schema/beans";

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";

      xmlns:sec="http://cxf.apache.org/configuration/security";

      xmlns:http="http://cxf.apache.org/transports/http/configuration";

      xsi:schemaLocation="http://cxf.apache.org/configuration/security

          http://cxf.apache.org/schemas/configuration/security.xsd

          http://cxf.apache.org/transports/http/configuration

          http://cxf.apache.org/schemas/configuration/http-conf.xsd

          http://www.springframework.org/schema/beans

          http://www.springframework.org/schema/beans/spring-beans.xsd";>

 

   <http:conduit
name="{http://api.channeladvisor.com/webservices/}OrderServiceSoap.http-
conduit">

     <http:tlsClientParameters secureSocketProtocol="SSL">

     </http:tlsClientParameters>

   </http:conduit>

   <http:conduit
name="{http://api.channeladvisor.com/webservices/}InventoryServiceSoap.h
ttp-conduit">

     <http:tlsClientParameters secureSocketProtocol="SSL">

     </http:tlsClientParameters>

   </http:conduit>

</beans>

 

Wes

Reply via email to