Re: Making a CXF Endpoint backwards compatible

2014-05-27 Thread Matt Raible
I finally got this figured out - without the need to call .marshal or use camel-soap. Basically, I had to add a number of annotations to get names to match, and then do a bit of nesting on the response so it was understood. A lot of the names didn't seem to matter, but I wanted to make the new

Re: Making a CXF Endpoint backwards compatible

2014-05-27 Thread Matt Raible
I've made good progress on getting this to work, mostly by adding annotations to my service interface. Everything is working as far as calling the service from my test. I did have to change from ClientProxyFactoryBean to JaxWsProxyFactoryBean and set the binding to match the @BindingType(SOAPBi

Making a CXF Endpoint backwards compatible

2014-05-23 Thread Matt Raible
Hey all, I have a route that produces a CXF Endpoint. public class FooRoute extends RouteBuilder { private String uri = "cxf:/foo?serviceClass=" + FooService.class.getName(); @Override public void configure() throws Exception { from(uri)