Hello,
I've simple task to parse xml entries containing links to files. For each
entry the file should be downloaded. Is the following route a correct
approach?
from("direct:start")
.to("http://address.of.xml")
.filter()
.xpath("entry/link")
.to(body())
.to("file:input);
I'd like to add parallel download later too.
--
View this message in context:
http://camel.465427.n5.nabble.com/download-files-for-each-xml-entry-tp5749276.html
Sent from the Camel - Users mailing list archive at Nabble.com.