I've recently started looking at servicemix / camel so apologies if this is a bit of a newbie question.
I was looking at the camel cxf proxy example and have managed to route to my external axis2 web service using the below. However I would like to also save the incoming SOAP message to the file system so I added com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in prolog
<log message="Moving $ to the output directory"/>
Hi,
Looks like the stream was consumed before send to external ws.
You can add streamCache="true" to your camelContext, take a look at
http://camel.apache.org/stream-caching.html
Freeman