Re: AMQ5.8.0: Strange consumer/producer dependency issue

2013-09-06 Thread Christian Posta
"If you need queuing semantics check out virtual destinations or durable subscribers. You could also take a look at subscription recovery policy on the broker side." On Fri, Sep 6, 2013 at 12:06 AM, AlexP wrote: > Thanks for your reply. > > We need to deliver messages to web clients doing long p

Re: AMQ5.8.0: Strange consumer/producer dependency issue

2013-09-06 Thread AlexP
Thanks for your reply. We need to deliver messages to web clients doing long poll. A web client may not be there when message is generated, but we need the message to stay in topic until at least one client sees it. We are using topics as a user may open multiple browsers and we want notificatio

Re: AMQ5.8.0: Strange consumer/producer dependency issue

2013-09-05 Thread Christian Posta
Yep working as designed :) topics are broadcast destinations. They will deliver messages to whomever is listening at the time. If you need queuing semantics check out virtual destinations or durable subscribers. You could also take a look at subscription recovery policy on the broker side. Cheers