NServiceBus icon indicating copy to clipboard operation
NServiceBus copied to clipboard

Build, version, and monitor better microservices with the most powerful service platform for .NET

Results 217 NServiceBus issues
Sort by recently updated
recently updated
newest added
trafficstars

To stop receiving and processing messages, users have to stop the whole endpoint and restart it again when they want to consume messages again. This has several disadvantages: * When...

_This issue was transferred from a private repository_ In order to query saga state, users often use messages or other techniques in the CQRS space crafted specifically for that purpose...

_This issue was transferred from a private repository_ Users shouldn't need to know all of the details of how transport specific settings work. What they know is generally how my...

_This issue was transferred from a private repository_ `EndpointConfiguration` instances require a lot of settings, most of which rarely (if ever) deviate from default values. A new `EndpointConfiguration` instance is,...

_This issue was transferred from a private repository_ I've seen this scenario in several support cases: The user wants to send a large amount of messages via the bus to...

_This issue was transferred from a private repository_ The send/publish API allows to do something like: ``` context.Send( e => { /* set interface properties */ } ); context.Publish( e...

One of the scenarios I use to describe the use of sagas is where we're integrating with external parties like FedEx for shipping. I describe the use of a timeout...

When developers apply refactoring techniques, as for example moving a saga class from a namespace to a different one, they're introducing a breaking change that is hard to deploy in...

## Problem Definition When integrating between systems, where system A uses one serialization format by default (lets say JSON) and system B uses a different default (say XML), and A...

## Problem Definition (Required) When customers are first getting started with NServiceBus we often try to replace calls to web services with specific integration endpoints. Frequently this involves creating a...