Show Table of Contents
11.13. Configuration for Content-Based Routing
- XPath statements are connected through configuration settings stored in the jboss-esb.xml file. The
service configurationbelow shows an example service configuration fragment. (In this example, the service is listening to a Java Message Service queue.)<service> category="MessageRouting" name="YourServiceName" description="CBR Service"> <listeners> <jms-listener name="CBR-Listener" busidref="QueueA" maxThreads="1"> </jms-listener> </listeners> <actions> <action class="org.jboss.soa.esb.actions.ContentBasedRouter" name="YourActionName"> <property name="ruleSet" value="JBossESBRules.drl"/> <property name="ruleReload" value="true"/> <property name="destinations"> <route-to destination-name="xml-destination" service-category="category01" service-name="jbossesbtest1" /> <route-to destination-name="serialized-destination" service-category="category02" service-name="jbossesbtest2" /> </property> <property name="object-paths"> <object-path esb="body.test1" /> <object-path esb="body.test2" /> </property> </action> </actions> </service>Each message is passed to theContentBasedRouteraction class, which is loaded with a certain rule-set. It then sends the message to the JBoss Rules engine's working memory, runs the rules, obtains the list of destinations and sends copies of the message to the services.In this case, it uses theJBossESBRules.drlrule-set which matches two destinations-xml-destinationandserialized-destination. These names are mapped to those of real services in theroute-tosection.

Where did the comment section go?
Red Hat's documentation publication system recently went through an upgrade to enable speedier, more mobile-friendly content. We decided to re-evaluate our commenting platform to ensure that it meets your expectations and serves as an optimal feedback mechanism. During this redesign, we invite your input on providing feedback on Red Hat documentation via the discussion platform.