Zaffiro
Zaffiro

Reputation: 4934

MSMQ Message Viewer?

I have messages in a MSMQ queue and I would like to view the full message.

I know I can write code to peek the queue, but was wondering if there is a viewer that already exists that will let me read the entire message?

Upvotes: 48

Views: 47793

Answers (6)

MSMQ Studio is an MSMQ management tool that allows you to view and send messages and manage your local and remote queues.

*** NOT AVAILABLE ANY MORE ***

MSMQ Studio

Upvotes: 1

Joey V.
Joey V.

Reputation: 1926

MSMQ QXplorer

Free. Open source.

https://sourceforge.net/projects/msmqqxplorer/

Upvotes: 40

marc_s
marc_s

Reputation: 754598

There are a few options - all I found are commercial (not terribly expensive, but not free, either):

enter image description here

alt text

alt text

Upvotes: 41

Daniel Halan
Daniel Halan

Reputation: 584

Service Bus MQ Manager is a free open-source tool I wrote to monitor the MSMQ in real-time for any incoming messages, it supports coloring and formatting of XML and JSON messages.

http://blog.halan.se/page/Service-Bus-MQ-Manager.aspx

Upvotes: 12

Petar Vučetin
Petar Vučetin

Reputation: 3615

If you are using Visual Studio - Open Server Explorer under Servers/[Server Name] there is Message Queues folder that gives you view as well.

Upvotes: 45

Hugo Forte
Hugo Forte

Reputation: 5978

You can get to a snap-in here: Computer Management > Services and Applications > Message Queuing

According to: http://stevesmithblog.com/blog/how-can-i-view-msmq-messages-and-queues/

Upvotes: 19

Related Questions