Just to help understanding, here is basically what I am doing, catching an incoming request on a jetty port, log the message, route to cxf component, log the response. How do I leverage the cxf endpoint to validate? Like I said currently it is in MESSAGE dataformat so that is not happening, but when switching to POJO mode it throws interceptor errors.
Route wrote > > <route id="JavelinSalesforceService"> > <from uri="jetty:http://0.0.0.0:9191/JavelinSalesforceService" /> > <convertBodyTo type="String" /> > <to uri="file:data/salesforce/request"/> > <to uri="cxf:bean:salesforceEnterpriseAPI"/> > <convertBodyTo type="String" /> > <to uri="file:data/salesforce/response"/> > </route> > CXF Bean wrote > > <cxf:cxfEndpoint > id="salesforceEnterpriseAPI" > address="${sforce.api.address}" > wsdlURL="wsdl/sfdc.wsdl" > serviceClass="com.sforce.soap.enterprise.Soap" > serviceName="s:SforceService" > endpointName="s:Soap" > xmlns:s="urn:enterprise.soap.sforce.com"> > <cxf:properties> > <entry key="dataFormat" value="MESSAGE"/> > </cxf:properties> > </cxf:cxfEndpoint> > > -- View this message in context: http://camel.465427.n5.nabble.com/CXF-Question-tp5487172p5493081.html Sent from the Camel - Users mailing list archive at Nabble.com.
