Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MSMQ causes Windows 8 to crash with a BSOD

Tags:

c#

windows-8

msmq

I use Windows 8 Pro, C# and .NET 4.5

I use MSMQ to read or peek or send message on a REMOTE machine but it causes the operating system a BSOD...

Locally there is no problem but only when i try to access remote machine with msmq by code.

The code works perfectly under XP/Seven and Server 2008/2012

Here is a little sample :

var messageQueue = new MessageQueue(string.Concat("FormatName:DIRECT=", addressType, ":", _queueServer, @"\private$\", _queueName), false, false, QueueAccessMode.Receive);

messageQueue.Receive() => BSOD!!!

Do someone has a fix or an explanation?

Thank you,

Kind Regards.

like image 844
dnx Avatar asked Apr 05 '13 16:04

dnx


1 Answers

If you go into C:\windows\minidump

then open the *.dmp file with "Debugging tools for Windows"

that should give more insight into the nature of the issue.

like image 181
Adam Sulik Avatar answered Nov 15 '22 00:11

Adam Sulik