| Selects all messages matching the XPath/regexp expressions specified in the parameters.
The syntax of a parameters are:
[XPath expression that selects the single attribute or element ]==[a regular expression that the field must match]
I.e. the following setup matches alle messages containing an Name field with a value starting with 'MrMan'
<message_selector command="java:org.mactor.extensions.xml.XPathIgnoreNsMessageSelector">
<param>//Name==MrMan.*</param>
</message_selector>
Namespace information in the evaluated messages is ignored, so the XPath expressions must not include namespace prefixes
author: Lars Ivar Almli |