Select the PAYLOAD format, if you want to access the SOAP
message body in XML format, encoded as a DOM object (that is, of
org.w3c.dom.Node type). One of the advantages
of the PAYLOAD format is that no JAX-WS and JAX-B stub code is
required, which allows your application to be dynamic,
potentially handling many different WSDL interfaces.
Having a message body in XML format enables you to parse the request using XML languages such as XPath and to generate responses using templating languages, such as Velocity.
![]() | Note |
|---|---|
The DOM format is not the optimal type to use for large XML message bodies. For large messages, consider using the techniques described in Provider-Based Route. |
The code presented in this chapter is taken from the following demonstration:
DemoDir/src/fuse-webinars/cxf-webinars/customer-ws-camel-cxf-payloadFor details of how to download and install the demonstration code, see Demonstration Code for Camel/CXF
The Camel CXF component is an Apache CXF component that integrates Web services with routes. You can use it either to instantiate consumer endpoints (at the start of a route), which behave like Web service instances, or to instantiate producer endpoints (at any other points in the route), which behave like WS clients.
![]() | Note |
|---|---|
Came CXF endpoints—which are instantiated using the
|
The PAYLOAD data format is selected by setting the
dataFormat=PAYLOAD option on a Camel CXF
endpoint URI and it has the following characteristics:
Enables you to access the message body as a DOM object (XML payload).
No JAX-WS or JAX-B stub code required.
The SOAP body is marshalled as follows:
The message body is effectively an XML payload of
org.w3c.dom.Nodetype (wrapped in aCxfPayloadobject).The type of the message body is
org.apache.camel.component.cxf.CxfPayload.
The SOAP headers are converted into headers in the exchange's In message, of
org.apache.cxf.binding.soap.SoapHeadertype.
To implement and build the demonstration PAYLOAD-based route, starting from scratch, you would perform the following steps:
Instantiate the Camel CXF endpoint in Spring, using the
cxf:cxfEndpointelement.Implement the route in XML, where you can use the content-based router to sort requests by operation name.
For each operation, define a processor bean to process the request.
Define velocity templates for generating the reponse messages.
Figure 5 shows an outline of
the route that is used to process the operations of the
CustomerService Web service using the PAYLOAD
data format. After sorting the request messages by operation
name, an operation-specific processor bean reads the incoming
request parameters. Finally, the response messages are generated
using Velocity templates.






![[Note]](imagesdb/note.gif)



