Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Warning
titleReview

This documentation needs to be reviewed. See CAMEL-907.

Code Block
from("queue:foo").
  filter().xpath("//foo")).
  to("queue:bar")

...