Is there a tool that allows easy exporting of messages from a message queue (MSMQ)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:43:50Zhttp://stackoverflow.com/feeds/question/830194http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/830194/is-there-a-tool-that-allows-easy-exporting-of-messages-from-a-message-queue-msmq1Is there a tool that allows easy exporting of messages from a message queue (MSMQ)?Michael Rosario2009-05-06T15:31:34Z2009-05-06T16:18:39Z
<p>I am currently working on batch processing application using MSMQ in C#. In the application design, I have an error queue containing XML messages using the <code>ActiveXFormatter</code>. I know that I can write an application to write these error messages to text files or database tables.</p>
<p>Are there other <strong>pre-built</strong> tools available allowing you to export messages to variety of formats (i.e. text files, database tables, etc.)? I am just looking for best practices.</p>
http://stackoverflow.com/questions/830194/is-there-a-tool-that-allows-easy-exporting-of-messages-from-a-message-queue-msmq/830424#8304240Answer by Michael Rosario for Is there a tool that allows easy exporting of messages from a message queue (MSMQ)?Michael Rosario2009-05-06T16:18:39Z2009-05-06T16:18:39Z<p>Ok. I found the solution of writing code to be really easy. Here's my reference solution. </p>
<pre>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Messaging;
namespace ExportMSMQMessagesToFiles
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private void btnExportTextFiles_Click(object sender, EventArgs e)
{
//Setup MSMQ using path from user...
MessageQueue q = new MessageQueue(txtMSMQ.Text);
//Setup formatter... Whatever you want!?
q.Formatter = new ActiveXMessageFormatter();
// Loop over all messages and write them to a file... (in this case XML)
MessageEnumerator msgEnum = q.GetMessageEnumerator2();
int k = 0;
while (msgEnum.MoveNext())
{
System.Messaging.Message msg = msgEnum.Current;
string fileName = this.txtFileLocation.Text + "\\" + k + ".xml";
System.IO.File.WriteAllText(fileName, msg.Body.ToString());
k++;
}
MessageBox.Show("All done!");
}
}
}
</pre>