Delete Single Message MSMQ - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T08:22:21Zhttp://stackoverflow.com/feeds/question/463418http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/463418/delete-single-message-msmq1Delete Single Message MSMQspacemonkeys2009-01-20T22:38:24Z2009-01-20T23:05:46Z
<p>Hi</p>
<p>Is it possible to delete a single message from a MSMQ message queue ? I have a Queue object, a message (object) that I have got to by peeking and the ID of the message, I can see a way of deleting (or purging) the entire queue, but I can't see a way to delete the message on it's own, I've tried receiving the message once I have found it by peeking, but I get the error that "the cursor is invalid"</p>
<p>Any help gratefully received</p>
http://stackoverflow.com/questions/463418/delete-single-message-msmq/463441#4634410Answer by Abtin Forouzandeh for Delete Single Message MSMQAbtin Forouzandeh2009-01-20T22:45:22Z2009-01-20T22:45:22Z<p>You could try <a href="http://www.cogin.com/mq/index.php" rel="nofollow">QueueExplorer</a>.</p>
http://stackoverflow.com/questions/463418/delete-single-message-msmq/463468#4634681Answer by Tom Anderson for Delete Single Message MSMQTom Anderson2009-01-20T22:55:30Z2009-01-20T22:55:30Z<p>It will delete when you call the DeQueue, Peek is generally used to look forward at what is coming, while DeQueue should be used to actually retrieve the object.</p>
<p>Just be sure to always check to make sure something is available before calling Dequeue</p>
http://stackoverflow.com/questions/463418/delete-single-message-msmq/463483#4634832Answer by Abtin Forouzandeh for Delete Single Message MSMQAbtin Forouzandeh2009-01-20T23:01:44Z2009-01-20T23:01:44Z<p>Are you trying to use <code>MessageQueue.ReceiveById</code>?</p>
http://stackoverflow.com/questions/463418/delete-single-message-msmq/463491#4634910Answer by Igal Serban for Delete Single Message MSMQIgal Serban2009-01-20T23:05:46Z2009-01-20T23:05:46Z<p>Use one of the receive function. Depending on your language/technology ( c, com, .net ).</p>
<p>For .net it will be the MessageQueue.ReceiveById Method. Or any that you find appropriate. Depending on the message you want to remover (first, last, using cursor or id ).</p>