Hi Rick

When you get the file as xml I usually prefer to transform the xml using
xslt and then call cxf in PAYLOAD dataformat. 
You have to set up a cxf endpoint eg:
  <cxf:cxfEndpoint id="myservice" address="${someconfig-address}"
                serviceName="tns:Service1" endpointName="tns:xxx"
                wsdlURL="wsdl/Service1_1.wsdl" xmlns:tns="http://tempuri.org/";>
                 
                <cxf:properties>
                        <entry key="dataFormat" value="PAYLOAD" />
                </cxf:properties>
        </cxf:cxfEndpoint>

>From your route you can then call "cxf:bean:myservice" and get all the Soap
stuff done by cxf :-)





--
View this message in context: 
http://camel.465427.n5.nabble.com/New-to-Camel-and-also-needing-to-come-up-to-speed-on-Java-again-tp5752662p5752933.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to