Skip to content

Instantly share code, notes, and snippets.

@jonathanvila
Created December 19, 2016 21:31
Show Gist options
  • Save jonathanvila/971f0ed5c5d74e4509b3a470ae3adeab to your computer and use it in GitHub Desktop.
Save jonathanvila/971f0ed5c5d74e4509b3a470ae3adeab to your computer and use it in GitHub Desktop.
Camel route
from("file://src/test/resources/messages?fileName=products.xml").
log("Source Body : ${body}").
to("stream:out").
split(xpath("//Skus/Sku")).log("Split Body : ${body}").
setHeader("SkuID", xpath("//Sku/Id")).
convertBodyTo(String.class).to("mock:end");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment