I'm using JMS to send messages between a producer and multiple consumers. I already have the producer that send messages to a queue and now I want to implement multiple consumers that will receive the message according their JMSXGroupID parameter.
I want to implement those consumers using an EJB (not MDBs), that will launch a Consumer for each Queue Message.
But I'm having difficulties in found information about how to implement Message Consumers using EJBs and how to launch them (probably using Threads).
Can you give some lights about that, or tell me where can I find good information?