#nservicebus
Want to export distributed tracing info from NServiceBus to Azure Monitor Application Insights? This sample shows how to extend the NServiceBus message-processing pipeline to do that.
Monitoring NServiceBus endpoints with Application Insights • NServiceBus Samples
How to configure NServiceBus to export OpenTelemetry traces and meters to Application Insights.
docs.particular.net
January 12, 2026 at 3:04 AM
Want a #Docker container host for your NServiceBus endpoints? Call `dotnet new nsbendpoint` … Yeah, that's all there is to it
Docker Container Host • ParticularTemplates
Take advantage of process isolation by hosting endpoints in Docker containers.
docs.particular.net
January 10, 2026 at 9:01 AM
You know how to partition your #AzureCosmosDB collection but not sure how messages relate to partitions? Learn how to build multi-tenant systems using NServiceBus and CosmosDB in this webinar recording
Building multi-tenant systems using NServiceBus and Cosmos DB
Azure Cosmos DB provides highly reliable, scalable, and performant data storage in the Microsoft Azure cloud. However, designing your NServiceBus system with Cosmos DB to create performant, reliable,…
particular.net
January 9, 2026 at 1:16 PM
To build and run NServiceBus solutions on Visual Studio @Code, all you need are Code, the C# extension, and this article to show you how to set up launch.json and tasks.json to debug your solution
Debugging NServiceBus in Visual Studio Code • NServiceBus
How to configure Visual Studio Code to build and debug multiple NServiceBus endpoints simultaneously.
docs.particular.net
January 8, 2026 at 3:04 AM
NServiceBus guarantees reliability and extensibility you just can't get with REST or other HTTP-based web services. Get a quick introduction to why building with NServiceBus makes building distributed systems better in our Quick Start tutorial
Quickstart: Sending and processing your first messages
Part 1: Learn messaging basics with NServiceBus quickstart guide covering commands,events, and publish subscribe patterns.
docs.particular.net
January 6, 2026 at 7:33 PM
Want to learn #NServiceBus? The quickest way is to build something. Check out our tutorial with step-by-step exercises
NServiceBus Step-by-step • NServiceBus
Learn how to use NServiceBus quickly with this step-by-step tutorial, including the architectural concepts behind it.
docs.particular.net
January 4, 2026 at 3:04 AM
Clava has been using #NServiceBus in his production systems in the public utilities industry for 10 years. Get a taste for how NServiceBus can improve your mission-critical software systems by trying our Quick Start tutorial now.
Quickstart: Sending and processing your first messages
Part 1: Learn messaging basics with NServiceBus quickstart guide covering commands,events, and publish subscribe patterns.
docs.particular.net
January 3, 2026 at 9:00 AM
@kijanawoodard knows all the mistakes people make using NServiceBus. Take a look at this video and make sure you aren't making any!
NSBCon 2015: Top Mistakes Using NServiceBus
One of the great things about NServiceBus is that it is so flexible. But with that flexibility comes the opportunity to do inadvisable things. What kind of things, you ask? At NSBCon 2015, Kijana…
particular.net
December 25, 2025 at 1:16 PM
A "demoware" NServiceBus solution is one thing. Learn the techniques to bring it into the real world, like changing to RabbitMQ for production message queuing, testing the system, optimizing the system with behaviors, and handling production errors
Live coding: NServiceBus in the real world
Watch me extend the NServiceBus system from the previous webinar, adding features you’ll need to run a real-world system in production. …
particular.net
December 24, 2025 at 1:16 PM
The New .slnx siolution format is what solution files always should have been. We've converted all of our repos for our upcoming NServiceBus 10 release. Let @mjovanovictech show you how to do it!
The New .slnx Solution Format (migration guide)
See what changes in .slnx, how to convert your existing .sln, and what to watch out for in CI.
www.milanjovanovic.tech
December 22, 2025 at 3:04 AM
With an NServiceBus system, you get smarter handling of poison messages and the ability to easily retry/replay them. Check out the other ways NServiceBus makes building message-driven systems faster and easier
You know why queuing matters
You've used a message queue before? Great, then you know what queuing matters. Then let's take it to the next level with some visualization and monitoring tools to help the rest of the team.
particular.net
December 21, 2025 at 3:04 AM
Never worry about losing business requests again with NServiceBus automatic error queue handling on AWS Lambda.
Using NServiceBus in AWS Lambda with SQS • AWS Lambda (SQS) Samples
docs.particular.net
December 19, 2025 at 3:05 AM
Be the first to know when your system's external dependency goes down. Use #NServiceBus custom checks
Monitor third-party systems with custom checks • ServiceControl CustomChecks Samples
Monitoring third-party systems which are exposed as HTTP endpoints with custom checks.
docs.particular.net
December 17, 2025 at 7:33 PM
See how you can use #NServiceBus in an #ASPNetCore #WebAPI application. We've got a sample for that!
Using NServiceBus in an ASP.NET Core Web Application • NServiceBus Samples
docs.particular.net
December 16, 2025 at 11:01 AM
NServiceBus has a bunch of persistence options: SQL, Azure Storage, DynamoDB, MongoDB, RavenDB, and NHibernate. How do you know which to pick? Check out our guidance on persistence selection to make sure you make the right choice
Selecting a persister • NServiceBus
A guide for selecting an NServicebus persister.
docs.particular.net
December 15, 2025 at 7:33 PM
NServiceBus is a framework packed full of features for implementing messaging and workflow orchestration in .NET applications.

Read more about it here: https://bit.ly/3YCRz2r

#dotnet #SoftwareDevelopment #messaging #DistributedApps
December 12, 2025 at 4:59 PM
Figure out which technology choices are right for your distributed system with our Technology Selection page, part of the NServiceBus learning path
Learn NServiceBus and the Service Platform
particular.net
December 12, 2025 at 3:04 AM
Did you know you can use #NServiceBus to receive #AzureServiceBus messages created by other processes? This is a great way to do integration with external systems! #samplecode
Azure Service Bus transport native integration sample • Azure Service Bus Transport Samples
How to consume messages published by non-NServiceBus endpoints.
docs.particular.net
December 10, 2025 at 1:15 PM
Sagas make message-based business processes so easy! Check out our introduction to NServiceBus Sagas:
NServiceBus sagas: Saga basics
A step-by-step guide to building an NServiceBus saga to handle a common business case of taking action once multiple messages have been successfully received.
docs.particular.net
December 10, 2025 at 3:04 AM
Want to learn how to hook NServiceBus up to a real transport like RabbitMQ? Watch @DavidBoike live code it in this webinar recording. Live coding: NServiceBus in the real world
Live coding: NServiceBus in the real world
Watch me extend the NServiceBus system from the previous webinar, adding features you’ll need to run a real-world system in production. …
particular.net
December 9, 2025 at 7:33 PM
It's easy to get a distributed system wrong, even when using NServiceBus! Learn the best practices of designing a distributed system with NServiceBus here:
Best practices • NServiceBus
An assortment of best practices presented as DO, DO NOT, and CONSIDER.
docs.particular.net
December 8, 2025 at 1:16 PM
CONSIDER grouping message handlers by SLA. AVOID using async messages for queries. DO NOT use messaging for occasionally-connected clients. See these and other recommendations for building NServiceBus systems in our Best Practices article
Best practices • NServiceBus
An assortment of best practices presented as DO, DO NOT, and CONSIDER.
docs.particular.net
December 8, 2025 at 3:04 AM
Using a SQL trigger to create #NServiceBus messages is a great way to integrate with a legacy SQL app
SQL Server transport native integration sample • SQL Server Transport Samples
Integrating natively with the SQL Server transport.
docs.particular.net
December 7, 2025 at 3:04 AM