Using the System.Messaging classes, how do I move a msmq message (in this case a poison message) to a subqueue?

Seems like this should be simple, but I haven't been able to figure it out.

link|improve this question

Aren't subqueues just for WCF usage? – John Breakwell Apr 7 '11 at 19:06
Wouldn't you want to use a normal queue for that? Like a dead letter queue? – 010110110101 Apr 7 '11 at 19:29
Subqueues are an MSMQ feature. "Move" is available from the unmanaged api: msdn.microsoft.com/en-us/library/ms701502(VS.85).aspx – Gabe Moothart Apr 7 '11 at 19:32
@010110 I want a subqueue mainly so that it is easy to move them back to the main queue from the GUI once I've fixed the problem. – Gabe Moothart Apr 7 '11 at 19:34
feedback

1 Answer

up vote 3 down vote accepted

This does not appear to be possible. Ayende resorts to the unmanaged API in Rhino Service Bus, and if he can't do it then I certainly can't.

link|improve this answer
flag this as answer. – Aliostad Aug 3 '11 at 10:25
feedback

Your Answer

 
or
required, but never shown

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