Re: conduit subscriptions

2009-08-17 Thread Rob Davies
On 11 Aug 2009, at 17:14, > wrote: Hey, We use both topics and queues alongside selectors, ActiveMQ 5.2, and we were intending to go live using a network of brokers and the clients using the failover: protocol. Unfortunately, due to how conduit subscriptions work we will start with a s

One session, multiple listening consumer?

2009-08-17 Thread mquestioner
Hi, I want to know what would happen if I create one session and multiple consumer w/ listeners, like: Session session = connection.createSession(); TemporaryQueue q = session.createTemporaryQueue(); for (i = 0; i < 10; i++) { MessageConsumer c = session.createConsumer(q); c

Re: Rendezvous discovery agent

2009-08-17 Thread Joe Fernandez
I think you need to have something similar to the following Joe http://www.ttmsolutions.com yesnid wrote: > > Hello All, > > Do I need to configure the "discoveryAgent" property of the activemq > configuration file, if I am using rendezvous, as my discovery medium? > > Thank

Rendezvous discovery agent

2009-08-17 Thread yesnid
Hello All, Do I need to configure the "discoveryAgent" property of the activemq configuration file, if I am using rendezvous, as my discovery medium? Thank you, -- View this message in context: http://www.nabble.com/Rendezvous-discovery-agent-tp25009694p25009694.html Sent from the ActiveMQ -

Re: Restricting consumer to consume no of messages in timeslot.

2009-08-17 Thread Jigar Naik
ok... thanks a lot.. Dejan Bosanac wrote: > > Hi Jigar, > > there's nothing in JMS and ActiveMQ to help you with this, but you can > easily implement this kind of logic in your application. > > Cheers > -- > Dejan Bosanac > > Open Source Integration - http://fusesource.com/ > ActiveMQ in A

Re: Restricting consumer to consume no of messages in timeslot.

2009-08-17 Thread Dejan Bosanac
Hi Jigar, there's nothing in JMS and ActiveMQ to help you with this, but you can easily implement this kind of logic in your application. Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net

Re: ActiveMQ+XMPP

2009-08-17 Thread Dejan Bosanac
Hi Ely, ActiveMQ is not an XMPP server. XMPP transport is just used to exchange messages with clients using XMPP protocol underneath, so there's no direct way to handle XMPP-related commands. On the other hand, you can use plugins and advisory messages to handle certain events, such as someone jo

ActiveMQ+XMPP

2009-08-17 Thread ELY
I've posted a message on Camel-users with this same topic. Sorry, but I think my question is better addressed on ActiveMQ-users. This is my problem: I have developed a server that communicates with its client using JMS. I only embedded ActiveMQ's broker. Basically, it is a game server with lobby

Restricting consumer to consume no of messages in timeslot.

2009-08-17 Thread Jigar Naik
Hi, Is it possible to create a consumer which consumes particular no of messages in particular time slot. Lets say i want to consume only 100 messages in every 1 hour. How do i achieve this ? -- View this message in context: http://www.nabble.com/Restricting-consumer-to-consume-no-of-messages