This content has been marked as final.
Show 2 replies
-
1. Re: Multiple Consumer for JMS topic instance on the Same Server,how to stop receiving the copy of same message on all Consumer
jbertram Mar 20, 2017 8:17 PM (in response to rashnie1)The semantics of a JMS topic demand that every subscription receive every message sent to the topic (assuming there is no selector which filters the message out). If you want multiple consumers to share the same subscription then you can use a JMS shared subscription (a new feature in JMS 2.0).
-
2. Re: Multiple Consumer for JMS topic instance on the Same Server,how to stop receiving the copy of same message on all Consumer
jbertram Mar 24, 2017 10:01 AM (in response to rashnie1)Did you get this sorted?