Suppose I created a JMS Topic (PropertiesTopic) with one subscriber (PropertiesSubscriber). PropertiesSubscriber is running in a load balanced application server cluster as shown in the picture below.

alt text

When a message is delivered to PropertiesTopic, do all the instances of PropertiesSubscriber running on different app servers get that message or does the message get delivered to only one PropertiesSubscriber instance running on an app server determined by the load balancer?

link|improve this question

75% accept rate
The subscriber is an MDB (message-driven EJB)? – John M Jan 7 '10 at 19:26
Lets suppose that each subscriber is an MDB. Would it make a difference? – Sasi Jan 7 '10 at 22:32
feedback

1 Answer

up vote 0 down vote accepted

All the instances of PropertiesSubscriber running on different app servers WILL get that message. Even if there are multiple listeners on the same app server for the topic, all the listeners will get the message.

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.