Hi,

The camel-cxf component contains the camel transport for cxf. I have used it already to do SOAP/JMS.

I am currently working on a SoapJaxbDataFormat that is even more decoupled. Have a look at:
https://issues.apache.org/activemq/browse/CAMEL-2396

For example a server could look like this:
from("jms://myqueue").unmarshal(soapDataFormat).bean(serverBean).marshal(soapDataFormat);

A client like this:
Endpoint start = context.getEndpoint("direct:start");
MyCustomerService customerService = ProxyHelper.createProxy(start, this.getClass().getClassLoader(), MyCustomerService.class);

from("direct:start").marshal(soapDataFormat ).to("jms://myQueue").unmarshal(soapDataFormat);

Have a look at the Unit Tests to see how it works.

Greetings

Christian



Am 27.01.2010 23:09, schrieb albiii:
Hi :

   I am looking for Apache CXF and or Camel riders to build a Camel CXF
component that does not use http underneath.
In my world, the header info and message format (SOAP) should be decoupled
from the transport layer (http over tcp).

I would like to put SOAP over UDP or SCTP or ......

Any takers ?

Reply via email to