The xpath2eval accessor is used to perform a boolean test of an xpath v2.0 expression on the operand.
The operator contains a canonical XPath expression to be evaluated on the operand.
This accessor uses the Saxon XPath 2.0 engine which complies with the W3C XPath 2.0 draft specification.
The truth of an XPath expression can include the document tree matches an xpath location, the value of a location matches a given value or
an XPath function matches some value, or a combination of all of these.
xpath2eval returns a boolean aspect
namespace argument syntax
XPath2.0 doesn't support XQuery style 'declare namespace' declarations and so namespace prefixes have to be supplied separately to the XPath evaluation engine.
The namespace argument can supply an optional document containing prefix-uri pairs. It has the following form...
<namespace>
<default>an optional default namespace uri - this has no prefix</default>
<entry>
<prefix>the ns prefix</prefix>
<uri>the ns uri</uri>
</entry>
...as many entries as required...
</namespace>