You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

XQuery

Camel supports XQuery to allow an Expression or Predicate to be used in the DSL or Xml Configuration. For example you could use XQuery to create an Predicate in a Message Filter or as an Expression for a Recipient List.

To add an XQuery expression to your routing rules its usually easiest to import the XQueryBuilder classes methods then you can use the xquery() function inside your rules.

import static org.apache.camel.builder.saxon.XQueryBuilder.*;

...


from("queue:foo").filter(xquery("//foo")).to("queue:bar")

Examples

Here is a simple example using an XQuery expression as a predicate in a Message Filter

Error formatting macro: snippet: java.lang.NullPointerException
  • No labels