Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

In this example we marshal the file content to String object in UTF-8 encoding.

Code Block
from("file://data.csv").marshal().string("UTF-8").to("jms://myqueue");

...

Code Block
from("jms://queue/order").unmarshal().string("UTF-8").processRef("newOrder");

Dependencies

This data format is provided in camel-core so no additional dependencies is needed.