Delete Single Message MSMQ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:22:21Z http://stackoverflow.com/feeds/question/463418 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/463418/delete-single-message-msmq 1 Delete Single Message MSMQ spacemonkeys 2009-01-20T22:38:24Z 2009-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#463441 0 Answer by Abtin Forouzandeh for Delete Single Message MSMQ Abtin Forouzandeh 2009-01-20T22:45:22Z 2009-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#463468 1 Answer by Tom Anderson for Delete Single Message MSMQ Tom Anderson 2009-01-20T22:55:30Z 2009-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#463483 2 Answer by Abtin Forouzandeh for Delete Single Message MSMQ Abtin Forouzandeh 2009-01-20T23:01:44Z 2009-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#463491 0 Answer by Igal Serban for Delete Single Message MSMQ Igal Serban 2009-01-20T23:05:46Z 2009-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>