java - Deliver JMS message to all nodes in the cluster in Weblogic -
What is a way to configure the Weblogic 9.x cluster to get a JMS message from a remote client on a JMS queue address Is that message given to each cluster node? Any link would be great.
No, there is point-to-point semantics in a JMS queue - each message delivered exactly once If you want to distribute to all the listeners, then you have to use the subject instead of the queue.
Comments
Post a Comment