Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives to RabbitMQ for .NET centric shop?

I need a reliable messaging solution. It looks like RabbitMQ would address the needs of my application. However, my environment is not well suited to deploying Erlang and Mnesia on a server. It is an enterprise environment and it is a huge battle of red tape to get "non-standard" pieces like that deployed. I would prefer to find a reliable messaging framework similar to RabbitMQ, but built on .NET. Storing messages in Oracle and/or SQL Server would be a bonus. Anything like that out there?

I'm aware of NServiceBus, but I don't think this is focused on reliable messaging as much as RabbitMQ is.

like image 655
RationalGeek Avatar asked May 10 '11 12:05

RationalGeek


2 Answers

How about good old msmq? It's standard component on windows server systems, has WCF bindings... so I guess this is exactly what you are looking for. Though, afaik it has its own filesystem-based message storage, and doesn't support sql server or oracle for that purpose.

like image 198
driushkin Avatar answered Oct 02 '22 14:10

driushkin


Take a look at ZeroMQ

like image 41
bniwredyc Avatar answered Oct 02 '22 16:10

bniwredyc