Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Messaging Bridge Upgrade Version 2 to 3

Component: Messaging Bridge

This is part of the NServiceBus Upgrade Guide from Version 8 to 9, which also includes the following individual upgrade guides for specific components:

Transports
Other

New package for MSMQ support

In version 3, support for bridging MSMQ endpoints is now provided by the new NServiceBus.MessagingBridge.Msmq package. Remove any references to NServiceBus.Transports.Msmq and update the bridge configuration from:

var msmq = new BridgeTransport(new MsmqTransport());

to:

var msmq = new BridgeTransport(new MsmqBridgeTransport());


Last modified