Thanks this was fast,

in meanwhile i found this from
(http://stackoverflow.com/questions/23339650/capturing-apache-camel-route-cxf-web-response)

    <from uri="file:src/data?noop=true" />
    <log loggingLevel="INFO" message="${body}"/>
    <to
uri="cxf://http://localhost:8181/cxf/webservice?wsdlURL=src/main/resources/META-INF/webservice.wsdl&amp;serviceName={http://carose.com/}EchoServiceImplService&amp;portName={http://carose.com/}EchoServiceImplPort&amp;dataFormat=MESSAGE"/>
    <log loggingLevel="INFO" message="${body}"/>
    <to uri="file:src/data/responses" />

But i do this in java with
".log(LoggingLevel.TRACE, "Sending to rtdm: ${body}").to(cxf)"
(stream caching is enabled for this route)
but in the log i see "Sending to rtdm: ${body}" - so "${body}" is not
replaced by actual data. is this my failure or is it supposed to not work
this way?



--
View this message in context: 
http://camel.465427.n5.nabble.com/Log-out-sent-xml-data-for-cxf-producer-tp5754245p5754249.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to