diff --git a/Snippets/Bridge/Bridge_2/Configuration.cs b/Snippets/Bridge/Bridge_2/Configuration.cs index fb3e4d5635c..d362dad8b2a 100644 --- a/Snippets/Bridge/Bridge_2/Configuration.cs +++ b/Snippets/Bridge/Bridge_2/Configuration.cs @@ -198,7 +198,7 @@ public void QueueName() var transport = new BridgeTransport(new MsmqTransport()); transport.HasEndpoint("Finance", "finance@machinename"); - var endpoint = new BridgeEndpoint("Sales", "sales@another-machine"); + var endpoint = new BridgeEndpoint("Sales", "sales@machinename"); transport.HasEndpoint(endpoint); #endregion diff --git a/Snippets/Bridge/Bridge_3/Configuration.cs b/Snippets/Bridge/Bridge_3/Configuration.cs index fb3e4d5635c..d362dad8b2a 100644 --- a/Snippets/Bridge/Bridge_3/Configuration.cs +++ b/Snippets/Bridge/Bridge_3/Configuration.cs @@ -198,7 +198,7 @@ public void QueueName() var transport = new BridgeTransport(new MsmqTransport()); transport.HasEndpoint("Finance", "finance@machinename"); - var endpoint = new BridgeEndpoint("Sales", "sales@another-machine"); + var endpoint = new BridgeEndpoint("Sales", "sales@machinename"); transport.HasEndpoint(endpoint); #endregion diff --git a/Snippets/Bridge/TransportBridge_1/Configuration.cs b/Snippets/Bridge/TransportBridge_1/Configuration.cs index 9c31df77839..2d648355924 100644 --- a/Snippets/Bridge/TransportBridge_1/Configuration.cs +++ b/Snippets/Bridge/TransportBridge_1/Configuration.cs @@ -199,7 +199,7 @@ public void QueueName() var transport = new BridgeTransport(new MsmqTransport()); transport.HasEndpoint("Finance", "finance@machinename"); - var endpoint = new BridgeEndpoint("Sales", "sales@another-machine"); + var endpoint = new BridgeEndpoint("Sales", "sales@machinename"); transport.HasEndpoint(endpoint); #endregion diff --git a/nservicebus/bridge/configuration.md b/nservicebus/bridge/configuration.md index dfdc85c5831..8e817c7c219 100644 --- a/nservicebus/bridge/configuration.md +++ b/nservicebus/bridge/configuration.md @@ -100,7 +100,7 @@ The "Sales" queue on the MSMQ transport and the "Billing" queue on the AzureServ The bridge provides the ability to change the address of the queue of incoming messages. > [!NOTE] -> When forwarding messages to MSMQ endpoints that run on different servers than the bridge, the addresses of the queues that messages should be forwarded to _must_ be provided. +> When forwarding messages to non-proxied MSMQ endpoints that run on different servers than the bridge, the addresses of the queues that messages should be forwarded to _must_ be provided. snippet: custom-address diff --git a/samples/bridge/azure-service-bus-msmq-bridge/sample.md b/samples/bridge/azure-service-bus-msmq-bridge/sample.md index 4c6a5482fc4..d264a89644a 100644 --- a/samples/bridge/azure-service-bus-msmq-bridge/sample.md +++ b/samples/bridge/azure-service-bus-msmq-bridge/sample.md @@ -61,7 +61,7 @@ snippet: asb-bridge-configuration The MSMQ bridge endpoint is configured by using the name of the actual MSMQ endpoint where the message needs to be routed to: > [!NOTE] -> The `QueueAddress` parameter is needed to create an MSMQ bridge endpoint when the actual MSMQ endpoint and the bridge are running on separate servers +> [Endpoints cannot read from remote MSMQ queues](/transports/msmq/#remote-queues), hence when reading messages from proxied MSMQ endpoints, the bridge must be configured on each MSMQ server that contains the proxy queues. snippet: create-msmq-endpoint-of-bridge