Any help or pointers to appropriate documents or forums would be
greatly appreciated.
MSMQ is a queue-manager-to-queue-manager system.
Your application just talks to the local queue manager.
The queue manager does the pushing and pulling of messages.
So you must have the core MSMQ component installed on both ends of the
communication.
To access a public queue using a pathname, you will need to add the Active
Directory Integration option.
To access a public queue using a DIRECT formatname, you don't.
Other functionality, such as encryption and authentication, requires Active
Directory Integration.
The libraries that your application requires (such as system.messaging) will
be deployed on any machine with MSMQ installed.
MSDN is the best place to start for this sort of information.
Cheers
John Breakwell (MSFT)
"EAIFreak" <eai....@gmail.com> wrote in message
news:58ca12b1-5fef-4e06...@s20g2000yqd.googlegroups.com...
Thank you very much for the quick reply. This explains an issue we
were having at a client since it seems we were attempting to use
public queues with the AD syntax and the client did not have the core
installed, so troubleshooting got confusing since there were two
issues.
Thanks again.