What is the format of the address of the remote queues

Our MQ service will be moved outside the local server. I see the current destination queue address as ". \ Private $ \ eventQueue".

What is the remote address format for sending messages?

+3
source share
2 answers

From Technet :

Private queues are accessible only by Message Queuing applications
that know the full path name, the direct format name, or 
the private format name of the queue, as follows:

* Path name:ComputerName\private$\QueueName.
* Path name on local computer: \private$\QueueName.
* Direct format name:: DIRECT=ComputerAddress\PRIVATE$\PrivateQueueName.
* Private format name: PRIVATE=ComputerGUID\QueueNumber.

For more information about queue names, see this article . One thing to note is that it is not possible to determine if the remote private queue is transactional or not, and if you send with the wrong transaction option, the message is discarded.

+4
source

( ). :

FormatName:DIRECT=OS:<machine>\<queue>

( .NET, )

-2

Source: https://habr.com/ru/post/1737666/


All Articles