You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/bridge/azure-service-bus-msmq-bridge/sample.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Bridge messages between endpoints using MSMQ and Azure Service Bus
3
-
summary: A sample showing how to send messages between endpoints using different transports
4
-
reviewed: 2023-06-02
3
+
summary: A sample showing how to send messages between endpoints using different transports using NServiceBus Messaging Bridge
4
+
reviewed: 2026-06-06
5
5
component: Bridge
6
6
related:
7
7
- transports/azure-service-bus
@@ -18,7 +18,7 @@ Common examples include:
18
18
* A hybrid solution that spans across endpoints deployed on-premises and in a cloud environment.
19
19
* Departments within organization integrating their systems that use different messaging technologies for historical reasons.
20
20
21
-
Traditionally, these integrations would require native messaging or relaying. Bridging is an alternative, allowing endpoints to communicate over different transports without getting into the low-level messaging technology.
21
+
Traditionally, these integrations would require native messaging or relaying. Bridging is an alternative that allows endpoints to communicate over different transports without requiring knowledge of low-level messaging technology.
22
22
23
23
## Prerequisites
24
24
@@ -38,9 +38,9 @@ The scenarios covered by the sample include:
38
38
39
39
### Bridging
40
40
41
-
Endpoints are bridged using [NServiceBus.MessagingBridge](/nservicebus/bridge/), which is a standalone process that runs side-by-side with the bridged endpoints, `MsmqEndpoint` and `AsbEndpoint`. These endpoints are not aware that there is a bridge involved in the sending and receiving of messages. They send/publish messages as if entire system uses the same transport. All of the configuration to bridge different transports is handled in the bridge code.
41
+
Endpoints are bridged using [NServiceBus.MessagingBridge](/nservicebus/bridge/), which is a standalone process that runs side-by-side with the bridged endpoints, `MsmqEndpoint` and `AsbEndpoint`. These endpoints are not aware that there is a bridge involved in the sending and receiving of messages. They send/publish messages as if the entire system uses the same transport. All configuration for bridging different transports is handled in the bridge code.
42
42
43
-
The bridge is connecting the MSMQ and Azure Service Bus endpoints and providing the configuration settings required by each transport. For example, Azure Service Bus requires a connection string and the topology to be set.
43
+
The bridge connects the MSMQ and Azure Service Bus endpoints, providing the configuration settings required by each transport. For example, Azure Service Bus requires a connection string and the topology to be set.
44
44
45
45
#### Azure Service Bus bridge endpoint configuration
46
46
@@ -52,7 +52,7 @@ To subscribe to an event published by the MSMQ endpoint, the Azure Service Bus e
52
52
53
53
snippet: asb-subscribe-to-event-via-bridge
54
54
55
-
When the bridge endpoint has been created and the publisher has been registered, the endpoint is added to the transport and then the transport is added to the bridge configuration.
55
+
When the bridge endpoint has been created and the publisher has been registered, the endpoint is added to the transport, and then the transport is added to the bridge configuration.
56
56
57
57
snippet: asb-bridge-configuration
58
58
@@ -69,7 +69,7 @@ To subscribe to an event published by the Azure Service Bus endpoint, the MSMQ e
69
69
70
70
snippet: msmq-subscribe-to-event-via-bridge
71
71
72
-
When the bridge endpoint has been created and the publisher has been registered, the endpoint is added to the transport and then the transport is added to the bridge configuration.
72
+
When the bridge endpoint has been created and the publisher has been registered, the endpoint is added to the transport, and then the transport is added to the bridge configuration.
0 commit comments