Reading the MSMQ transcational dead letter queue - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:05:33Zhttp://stackoverflow.com/feeds/question/278524http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue0Reading the MSMQ transcational dead letter queueGuy2008-11-10T17:15:13Z2008-11-10T19:56:54Z
<p>I'm trying to read the transactional deal letter queue in MSMQ using C#.NET and am getting "A workgroup installation computer does not support the operation"</p>
<p>For 10 Stack Overflow points, what am I doing wrong? </p>
http://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue/278619#2786190Answer by tomasr for Reading the MSMQ transcational dead letter queuetomasr2008-11-10T17:44:52Z2008-11-10T17:44:52Z<p>You're probably referencing the queue using the wrong kind of FormatName or path. What does yours look like? </p>
http://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue/278968#2789681Answer by tomasr for Reading the MSMQ transcational dead letter queuetomasr2008-11-10T19:56:54Z2008-11-10T19:56:54Z<p>Try this formatname instead and see if it works:</p>
<pre><code>@"FORMATNAME:DIRECT=OS:.\SYSTEM$;DeadXact"
</code></pre>