Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.net service bus recommendations? [closed]

We are in need of a distributed architecture messaging system/service bus with the capability of Publish/Subscribe. Does anyone have any reccomendations for a framework that we can use for .net applications?

like image 370
Chris Kooken Avatar asked Oct 09 '09 18:10

Chris Kooken


3 Answers

NServiceBus is growing in popularity. It is open source as well. Here is a Hanselminutes episode with Scott Hanselman talking with Udi Dahan about NServiceBus to help grok it. You should definitely evaluate using it.

UPDATE: There's also a DNR TV episode which shows what it's like to build an NServiceBus solution from scratch here: http://www.dnrtv.com/default.aspx?showNum=199

like image 84
Dale Ragan Avatar answered Oct 24 '22 03:10

Dale Ragan


Check out masstransit and rhino service bus too. Both open source and written by very smart people.

like image 22
Andrew Jones Avatar answered Oct 24 '22 02:10

Andrew Jones


Check out RabbitMQ. The .NET client is full-featured, and it's pretty easy to use. There's a book called RabbitMQ in Action, as well as RabbitMQ in Depth that's available in early access editions.

like image 6
TrueWill Avatar answered Oct 24 '22 02:10

TrueWill