Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

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.

Options

Div
classconfluenceTableSmall

Name

Default Value

Description

allowStAX

false

Camel

Wiki Markup
{div:class=confluenceTableSmall} || Name || Default Value || Description || | {{allowStAX}} | {{false}} | *Camel

2.8.3/2.9:

*

Whether

to

allow

using

StAX

as

the

{{

javax.xml.transform.Source

}}

.

| {div}

Examples

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

...