I was able to get this (Restlet -> CXF SOAP web service call) to work. Just had to make sure that the following line was there...exchange.getIn().setHeader("org.restlet.http.headers", "");The restlet headers was actually causing the route to fail with the ClassCastException - unable to convert from org.restlet.http.Parameter to java.lang.String.In order to figure out the issue I had to configure the CXF endpoint with "loggingFeatureEnabled=true". In the additional log that CXF then provided me, I found that the only place where the request to the CXF endpoint looked restlet-ish was in the header...once I removed that, it worked like a charm...
-- View this message in context: http://camel.465427.n5.nabble.com/Issue-with-Camel-tp5753081p5753473.html Sent from the Camel - Users mailing list archive at Nabble.com.