can anybody point out a reference on how to implement a single consumer multiple producer in activemq Or could give a very simple implementation this will be very helpful.

tnx

link|improve this question

40% accept rate
feedback

3 Answers

Matt Raible's AppFuse project is a good skeleton project which is implemented using different libraries. You can pick the one which uses Spring and introduce ActiveMQ as Bharati Raja has explained in his blog post jms with appfuse1x.

link|improve this answer
is this an implementation of a single consumer multiple producer? – jaded Jul 7 '10 at 13:08
Initialize as many producers as you need and just one consumer – Boris Pavlović Jul 7 '10 at 13:18
feedback

There is no special implementation required for this. This is the core business of MessageBrokers. The only thing you need to make sure of:

If you decide to give an ID to your producers, make sure they are different from each other.. You cannot have multiple producers with the same ID. Same goes for consumers.

link|improve this answer
feedback

If you need to guarantee that a message can be consumed by only one consumer, then this is the peer-to-peer/point-to-point communication model which can be implemented using a JMS Queue in ActiveMQ.

Many producers can send messages to the same queue. Only one active consumer will receive a message from the queue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.