Products | Versions |
---|---|
TIBCO Enterprise Message Service | - |
Not Applicable | - |
Resolution:
The administration tool can not be used directly to do that.
Indeed, the "show messages" command requires a <correlationId>.
You need first to get all the <messageIds> of the queue.
To do so:
1- create a program that implements a QueueBrowser
2- for each message, print the message Id using the Message.getJMSMessageID() method
Then, back to the administration tool:
3- use the command "show message <messageId>", using each messageId printed by the above QueueBrowser program.
Note that this possible only for queues, not topics.