c# - MSMQ: Remote message queue access -
Is it possible to have a MSMQ queue in a machine and read a message from that machine to another?
If so, what path should I use to make the method from the MessageQuote class?
Thank you
Surely to read messages from the queue on any other machine It is possible, depending on the version of Windows that you are running. It sounds like you are asking if the create message queue is possible on any other machine. According to the documentation, you can use the "MachineName / Private $ \ QueueName" format for a personal queue only to "MachineName \ QueueName" for the public queue.
In my experience, permission to read remote messages Qi is a bit difficult; It may also be difficult to get the right permissions set to permit creation of message queues, so you may want to consider using pre-built message queues.
Comments
Post a Comment