Re: Unable to have multiple consumers on the same broker

2009-07-16 Thread kkarank
Hi All, Thanks for your replies. Here is the code I am trying to use - Client 1 - subscribing to messages on '/queue/testing1' . $this->con=new Stomp($host); // connect $this->con->connect(); $this->con->subscribe('/queue/testing1'); . Client 2 - subs

Re: Unable to have multiple consumers on the same broker

2009-07-13 Thread kkarank
're not sure how to interpret it, > you can then respond with the output so that we can have a look. > > JLuna > > > > - Original Message >> From: kkarank >> To: users@activemq.apache.org >> Sent: Tuesday, July 14, 2009 12:40:08 AM >&g

Re: Unable to have multiple consumers on the same broker

2009-07-13 Thread kkarank
how many messages are streamed to EACH consumer - my problem is completely irrelevant to this fact. I am only able to set ONE consumer per queue. kkarank wrote: > > No I did not set the prefetch size - just used the defaults that come with > the PHP Stomp client. - I will play around and

Re: Unable to have multiple consumers on the same broker

2009-07-13 Thread kkarank
No I did not set the prefetch size - just used the defaults that come with the PHP Stomp client. - I will play around and come back Thanks :) bsnyder wrote: > > On Mon, Jul 13, 2009 at 9:53 PM, kkarank wrote: >> >> Thanks Bruce, >> >> I am connecting to the bro

Re: Unable to have multiple consumers on the same broker

2009-07-13 Thread kkarank
Thanks Bruce, I am connecting to the broker from PHP Stomp library and there is nothing in the examples you mention that talks about how to setup multiple consumers listening to the same broker port but on multiple queues? kk bsnyder wrote: > > On Mon, Jul 13, 2009 at 2:39 PM, kkarank

Unable to have multiple consumers on the same broker

2009-07-13 Thread kkarank
Hello All I am trying to setup two clients each listening to a different queue on the same broker but having no joy as ActiveMQ console shows that only one consumer is active at a time? This is despite both the clients listening for messages on different queues? Am I missing any setting? Cheers