Can you answer my question from before: Are you actually looking for your queue and address names to differ?
I'm not convinced the client address string you gave will necessarily do what your mail suggests you want (consuming from a queue named Test). However I am also not entirely clear on what it is you really want exactly, so its hard to advise as a result. If you just want to use multiple consumers from a simple queue of a given name, the queue name is typically all you would need in the client address string. The 'link durability' stuff is really for topic subscription usage, which the broker may be mistaking your attempts for, and those are not sharable by multiple consumers unless the sourcer terminus/node has the 'shared' capability as well (I dont know if the old C++ client can do that or not). Changing the selector for those is also meant to result in recreating the subscription, though not if an existing consumer is present, in which case it should fail. Robbie On Wed, 12 Aug 2020 at 11:38, umohank <[email protected]> wrote: > > Thanks for your reply Gordon. > > I have tried to update in ActiveMQ broker.xml, Queue created with specified > max consumer count. > > After running consumer with Filter "X", successfully able to listen the > Queue with filter X. > > Tried to run the second consumer with Filter "Y", Failed got QPID client > error "Unable to recreate subscription, consumers already exist" > > Now I am getting doubt, Is it possible to consume a Single durable Queue by > multiple consumers with there own filters?? > > Ex : 100 Consumer application subscribe using selector/filters to a single > Queue. > consume only if there filter matches. > > thanks, > Mohan > > > > > -- > Sent from: http://qpid.2158936.n2.nabble.com/Apache-Qpid-users-f2158936.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
