Message Queue Windows Service - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T04:30:08Zhttp://stackoverflow.com/feeds/question/576303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/576303/message-queue-windows-service0Message Queue Windows ServiceChris KL2009-02-23T01:42:55Z2009-02-23T02:15:48Z
<p>I wish to write a windows service in .Net 2.0 that listens to and processes a Message Queue (MSMQ).</p>
<p>Rather than reinvent the wheel, can someone post an example of the best way to do it? It only has to process things one at a time, never in parallel (eg. Threads).</p>
<p>Essentially I want it to poll the queue, if there's anything there, process it, take it off the queue and repeat. I want to do this in a system-efficient way as well.</p>
<p>Thanks for any suggestions!</p>
http://stackoverflow.com/questions/576303/message-queue-windows-service/576311#5763113Answer by tvanfosson for Message Queue Windows Servicetvanfosson2009-02-23T01:47:34Z2009-02-23T02:01:23Z<p>Check out the WCF examples at <a href="http://msdn.microsoft.com/en-us/library/ms751514.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms751514.aspx</a>.</p>
<p><strong>EDIT:</strong> Note that my answer was given before the edit to specify using .Net 2.0. I still think WCF is the way to go, but it would require .NET 3.0, at least.</p>
http://stackoverflow.com/questions/576303/message-queue-windows-service/576344#5763443Answer by RM for Message Queue Windows ServiceRM2009-02-23T02:15:48Z2009-02-23T02:15:48Z<p>There are a few different ways you can do the above. I would recommend setting up an event on the message queue so that you are notified when a message is available rather than polling for it.</p>
<p>Simple example of using message queues is <a href="http://www.codeproject.com/KB/cs/mgpmyqueue.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/mgpmyqueue.aspx</a> and the MSDN documentation for attaching events etc can be found at
<a href="http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue_events.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue_events.aspx</a></p>
<p>Microsoft example from <a href="http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue.receivecompleted.aspx" rel="nofollow">here</a>:</p>
<pre><code> ....
// Create an instance of MessageQueue. Set its formatter.
MessageQueue myQueue = new MessageQueue(".\\myQueue");
myQueue.Formatter = new XmlMessageFormatter(new Type[]
{typeof(String)});
// Add an event handler for the ReceiveCompleted event.
myQueue.ReceiveCompleted += new
ReceiveCompletedEventHandler(MyReceiveCompleted);
// Begin the asynchronous receive operation.
myQueue.BeginReceive();
....
private static void MyReceiveCompleted(Object source,
ReceiveCompletedEventArgs asyncResult)
{
// Connect to the queue.
MessageQueue mq = (MessageQueue)source;
// End the asynchronous Receive operation.
Message m = mq.EndReceive(asyncResult.AsyncResult);
// Display message information on the screen.
Console.WriteLine("Message: " + (string)m.Body);
// Restart the asynchronous Receive operation.
mq.BeginReceive();
return;
}
</code></pre>