vote up 1 vote down star

Hi

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"

Any help gratefully received

flag

4 Answers

vote up 2 vote down check

Are you trying to use MessageQueue.ReceiveById?

link|flag
Damn .. I was trying to be to clever and recieve by my peek cursor on the queue .... recieveById worked just fine .. ta – spacemonkeys Jan 20 at 23:13
vote up 0 vote down

Use one of the receive function. Depending on your language/technology ( c, com, .net ).

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 ).

link|flag
vote up 1 vote down

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.

Just be sure to always check to make sure something is available before calling Dequeue

link|flag
Where is the DeQueue method ? I can't see it on either Queue or Message – spacemonkeys Jan 20 at 23:15
vote up 0 vote down

You could try QueueExplorer.

link|flag
Thanks but I want to do it programatically – spacemonkeys Jan 20 at 22:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.