JMS SelectorsSelectors are a way of attaching a filter to a subscription to perform content based routing. Selectors are defined using SQL 92 syntax and typically apply to message headers; whether the standard properties available on a JMS message or custom headers you can add via the JMS code. Here is an example JMSType = 'car' AND color = 'blue' AND weight > 2500 For more documentation on the detail of selectors see the reference on javax.jmx.Message Using XPath to filter messagesApache ActiveMQ also supports XPath based selectors when working with messages containing XML bodies. To use an XPath selector use the following syntax XPATH '//title[@lang=''eng'']'
|