Hi cristian,

I am working with apache camel and i would like to configure https in the
route.
can you help me with this?

This is my beans.xml:

<beans xmlns="http://www.springframework.org/schema/beans";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xmlns:cxf="http://camel.apache.org/schema/cxf";
   
xmlns:cc="http://www.cnti.gob.ve/servicio/ServicioDirectorioEstadoVenezolano";
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://camel.apache.org/schema/spring
        http://camel.apache.org/schema/spring/camel-spring.xsd
        http://camel.apache.org/schema/cxf
        http://camel.apache.org/schema/cxf/camel-cxf.xsd
    ">

    <cxf:cxfEndpoint id="servicio_web_bus"
address="http://localhost:9003/servicios";
        wsdlURL="ServicioDirectorioEstadoVenezolano.wsdl"
        serviceName="cc:ServicioDirectorioEstadoVenezolano"
endpointName="cc:ServicioDirectorioEstadoVenezolanoUbicacion">
         <cxf:properties>
                      <entry key="dataFormat" value="MESSAGE"/>
             </cxf:properties> 
    </cxf:cxfEndpoint> 

    <cxf:cxfEndpoint id="servicio_web"
address="http://192.168.0.128:8080/cnti_servicios/ServicioDirectorioEstadoVenezolano";
         wsdlURL="ServicioDirectorioEstadoVenezolano.wsdl"
         serviceName="cc:ServicioDirectorioEstadoVenezolano"
endpointName="cc:ServicioDirectorioEstadoVenezolanoUbicacion">
          <cxf:properties>
                      <entry key="dataFormat" value="MESSAGE"/>
              </cxf:properties>
    </cxf:cxfEndpoint>
        
    <camelContext id="converter"
xmlns="http://camel.apache.org/schema/spring"; >
        <route streamCache="true">
            <from uri="cxf:bean:servicio_web_bus" />
            <to uri="cxf:bean:servicio_web" /> 
        </route>
    </camelContext>

</beans>

I hope for your response.

Thank you



--
View this message in context: 
http://camel.465427.n5.nabble.com/Problem-with-multiple-CXF-services-using-the-same-https-port-tp3379301p5461039.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to