Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Take a look at the following snippet:

Code Block
titleGetting Setting the orderresponse
borderStylesolid
/*
 * (non-Javadoc)
 * @see org.apache.camel.Processor#process(org.apache.camel.Exchange)
 */
 public void process(Exchange exchange) throws Exception {

    ...

    // finally set the result to the out message body
    exchange.getOut().setBody(doc);
 }

...