Discussion:
A workgroup installation computer does not support the operation.
(too old to reply)
Yovav
2010-09-10 18:32:03 UTC
Permalink
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 ?
John Breakwell
2010-09-10 21:10:28 UTC
Permalink
You are using path names that require Active Directory (which is why you get
the error).
Use Direct Format names instead.

Cheers
John Breakwell
Post by Yovav
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)
queue = MessageQueue.Create(queueName, false);
A workgroup installation computer does not support the operation.
How can I make it work locally ?
m***@gmail.com
2020-03-04 04:48:18 UTC
Permalink
Post by John Breakwell
You are using path names that require Active Directory (which is why you get
the error).
Use Direct Format names instead.
Cheers
John Breakwell
thanks John
Post by Yovav
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)
queue = MessageQueue.Create(queueName, false);
A workgroup installation computer does not support the operation.
How can I make it work locally ?
Continue reading on narkive:
Loading...