Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add headline above codeblock

...

Code Block
languagexml
<dependency>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-xstream</artifactId>
  <version>x.x.x</version>
  <!-- use the same version as your Camel core version -->
</dependency>

Using the Java DSL

Code Block
// lets turn Object messages into XML then send to MQSeries
from("activemq:My.Queue").
  marshal().xstream().
  to("mqseries:Another.Queue");

...