I have some code that is publishing messages to a broker Topic via java JMS client. Then I have two triggers, one that gets all messages (has no message selector) and one that should get only messages with “priority >= 5” in the message selector.
The problem is that the second trigger is not getting any messages. How do I know if I am setting the priority correctly? Can I look at the messages in the queu on the broker with the triggers disabled and see what the priority of a given message is?
Thanks for any help.
Joe H.