I have my Bridge CXF - HTTP working. This is my configuration for all who has
the same problems


<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0";
        xmlns:cxf="http://cxf.apache.org/blueprint/core";
xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs";
        xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws";
xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf";
        xmlns:camel="http://camel.apache.org/schema/blueprint";
        xsi:schemaLocation="
  http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
  http://www.osgi.org/xmlns/blueprint-ext/v1.1.0
https://svn.apache.org/repos/asf/aries/tags/blueprint-0.3.1/blueprint-core/src/main/resources/org/apache/aries/blueprint/ext/blueprint-ext.xsd
  
  http://cxf.apache.org/blueprint/jaxws
http://cxf.apache.org/schemas/blueprint/jaxws.xsd
  http://cxf.apache.org/blueprint/jaxrs
http://cxf.apache.org/schemas/blueprint/jaxrs.xsd
  http://cxf.apache.org/blueprint/core
http://cxf.apache.org/schemas/blueprint/core.xsd
  http://camel.apache.org/schema/blueprint
http://camel.apache.org/schema/blueprint/camel-blueprint.xsd
  http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0
http://aries.apache.org/schemas/blueprint-cm/blueprint-cm-1.1.0.xsd";>


        <camelcxf:cxfEndpoint id="pruebaBridgeLegacyConsumerEndpoint"
                serviceClass="com.esb.service.VesselVisitorService"
address="/vesselVisitorService"
                endpointName="ns:vesselVisitorServicePort"
serviceName="ns:vesselVisitorService"
                xmlns:ns="http://service.esb.com/"; />

        <camel:camelContext id="pruebaBridgeLegacyRoute"
                trace="true">
                 
                <camel:endpoint id="legacyEndpoint"
                        uri="http://localhost:80/vessel_visitors.xml"; />
                <camel:route id="rutaLegacy">
                        <camel:from
uri="cxf:bean:pruebaBridgeLegacyConsumerEndpoint?dataFormat=PAYLOAD" />
                        <camel:to uri="ref:legacyEndpoint" />
                        <camel:to uri="xslt:xslt/transformationXSLT.xslt" />
                </camel:route>

        </camel:camelContext>

</blueprint>



--
View this message in context: 
http://camel.465427.n5.nabble.com/Create-a-Simple-CXF-Http-Route-tp5731090p5731158.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to