Monthly Archives: November 2011

Talk on the new features in NServiceBus 3.0

I’ll be doing a talk over at Skills Matter next week covering some of the new features in the upcoming release of NServiceBus. The talk will be recorded but if you’re located in London please stop by! Some of the things that will be covered includes: Raven – NServiceBus will ship bundled with RavenDB, this means that [...]

Posted in NServiceBus, Talks | Comments closed

A NServiceBus Unit Of Work implementation for RavenDB

In my last post I introduced the new UoW support in NServiceBus 3.0. In this post I’ll show you how to use it to create a UoW implementation for RavenDB. Ayende has already blogged about one way to do it but now there is a better way. Sharing the session The first thing we need [...]

Posted in NServiceBus, RavenDB | Comments closed

Unit of work in NServiceBus 3.0

When using a framework like NServiceBus there is usually a need to create your own unit of work in order to avoid having to repeat code over an over again in your message handlers. Examples would be committing NHibernate transactions, calling SaveChanges on the RavenDB session, etc etc. In NServiceBus 2.6 your only hook into the message [...]

Posted in NServiceBus | Comments closed

Errors vs Alerts in NServiceBus

Ayende has a good post on how you would manage exceptions in your production environment. I’ve talked about how error management in a messaging world is a bit different in a previous post but I want to clarify how the things Ayende mentions in his post relates to messaging in general and NServiceBus in general. (the same [...]

Posted in Errorhandling, NServiceBus | Comments closed