Yovav
2010-09-10 18:32:03 UTC
I'm trying to send a message (c# project)
I added to my Windows 7 -> Microsoft Message Queue (MSMQ) Server
(the core and triggers options - after installing all options didn't work as
well)
I'm doing it on a local laptop (not connected to the regular work network)
so my user name looks like this:
private const string queueName = @".\userName";
When I try to create the message like this:
queue = MessageQueue.Create(queueName, false);
It fails with this error:
A workgroup installation computer does not support the operation.
How can I make it work locally ?
I added to my Windows 7 -> Microsoft Message Queue (MSMQ) Server
(the core and triggers options - after installing all options didn't work as
well)
I'm doing it on a local laptop (not connected to the regular work network)
so my user name looks like this:
private const string queueName = @".\userName";
When I try to create the message like this:
queue = MessageQueue.Create(queueName, false);
It fails with this error:
A workgroup installation computer does not support the operation.
How can I make it work locally ?