6

Can anyone recommend a message queuing solution for use with a .net winforms application, preferably open source.

Up until now we have always used MSMQ and found it has worked well for us but the environments the application will be deployed to are not under our control on this project so we cannot guarantee MSMQ will be installed, the people using the application will not have the knowledge to install it and we don't have the resources to talk them all through the process.

So I am looking for something that is kind of like MSMQ but can be included within the application installation package.

Charles
  • 50,943
  • 13
  • 104
  • 142
user1450877
  • 421
  • 5
  • 16

3 Answers3

5

RabbitMQ would be my first choice.

duffymo
  • 305,152
  • 44
  • 369
  • 561
4

There is also DotNetMQ (and associated CodeProject link).

Adam Houldsworth
  • 63,413
  • 11
  • 150
  • 187
1

WebSphere MQ is fast and stable: http://www.redbooks.ibm.com/redbooks/pdfs/sg247012.pdf

  • WebSphere MQ works, however keep in mind that their .NET client library is outdated and their latest version requires installation on the machine using it. – Jeff Winn Mar 08 '14 at 22:21