> I have a use case where I want to read an XML document from a flat file > and select XML element of interest using XPath accordingly output to a > JMS destination. > > > Can I use Camel for this use case ?
Yes. :) Ok, some more words .... Written from mind without the manual, so have a look at that. from("file:my.xml") .setBody(xpath("/select/node")) .to("jms:...") Jan