Skip to content

Commit 4af1054

Browse files
Legacy docs review - ASB-MSMQ bridge sample (#7187)
1 parent 9ce78b4 commit 4af1054

File tree

1 file changed

+7
-7
lines changed
  • samples/bridge/azure-service-bus-msmq-bridge

1 file changed

+7
-7
lines changed

samples/bridge/azure-service-bus-msmq-bridge/sample.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
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
55
component: Bridge
66
related:
77
- transports/azure-service-bus
@@ -18,7 +18,7 @@ Common examples include:
1818
* A hybrid solution that spans across endpoints deployed on-premises and in a cloud environment.
1919
* Departments within organization integrating their systems that use different messaging technologies for historical reasons.
2020

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.
2222

2323
## Prerequisites
2424

@@ -38,9 +38,9 @@ The scenarios covered by the sample include:
3838

3939
### Bridging
4040

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.
4242

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.
4444

4545
#### Azure Service Bus bridge endpoint configuration
4646

@@ -52,7 +52,7 @@ To subscribe to an event published by the MSMQ endpoint, the Azure Service Bus e
5252

5353
snippet: asb-subscribe-to-event-via-bridge
5454

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.
5656

5757
snippet: asb-bridge-configuration
5858

@@ -69,7 +69,7 @@ To subscribe to an event published by the Azure Service Bus endpoint, the MSMQ e
6969

7070
snippet: msmq-subscribe-to-event-via-bridge
7171

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.
7373

7474
snippet: msmq-bridge-configuration
7575

0 commit comments

Comments
 (0)