J2EE JMS in a clustered environment?

KaliMan

New member
I have a clustered environment. I have a POJO on one node that is hanging around waiting for a specific message (based on a selector) in a JMS queue. What happens if the message is dropped into the queue from a different server? Does the app server really just have one queue under all of the nodes - or is it giving each node a copy of the queue - or what?

Is there any way for me to essentially 'wait' an Object (a POJO or a Session Bean) on one node and have it 'notified' from a different node?
 
Back
Top