0

Is there a way to configure WebLogic 9.x cluster to receive a JMS message on a single JMS queue address from remote client and that the message is delivered to each cluster node? Any links would be great.

skaffman
  • 398,947
  • 96
  • 818
  • 769
Andrey Adamovich
  • 20,285
  • 14
  • 94
  • 132

1 Answers1

3

No, a JMS queue has a point-to-point semantics - each message is delivered exactly once. If you want to deliver to all listeners, you need to use a Topic rather than a Queue.

skaffman
  • 398,947
  • 96
  • 818
  • 769