JMSToolbox - An Open Source Queue Browser

Hi all!
I've had a few requests lately for developers looking for a queue browser that works with Solace Event Brokers. While we don't currently have a Solace proprietary queue browser, you can actually use JMSToolBox, which is a free and open source option (it's released under the GNU license)
You can find more info with these resources:
Tagged:
Comments
Another option for browsing queues in Solace, if you want something really basic (i.e. command-line text dump) is to use the SdkPerf test tool, which you download in different flavours from our solace.com/downloads page. Run it like so (C for Linux example given, but Java/JMS/C# similar):
./sdkperf_c -cip=192.168.42.35 [email protected] -cp=password -sql=q_samples -qb -md -sd=5000
Then you get output that looks like:
NOTE: be very careful to ensure you have the
-qb
option enabled, otherwise your SdkPerf instance will consume the messages, rather than browsing them. Which means they get removed from the queue.As always, the SdkPerf command line options
-h
(help) and -hm
(help more) are very useful.