I am working with apache camel and could use some help with something that i can not figure out. I would like to have multipule listeners on a single JMS queue.
I have a the following config for me camel context
<route id="customerDataRoute" autoStartup="false">
<from uri="activemq:customer.data"/>
<to uri="dataListener"/>
<choice>
...
I would like to have multipule listeners on the customer.data queue , but i am not sure if i set up this correctly or if it is just a config option that i can not nail down. I can start up an instance but only get the one listener.
Any help is greatly appricated!! thanks!