.net Non-MSMQ Message Queuing Solutions

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

So far, we have always used MSMQ and found that it worked well for us, but the environments in which the application will be deployed are not under our control over this project, so we can not guarantee that MSMQ will be installed, people using the application will not have the knowledge to install it, and we do not have the resources to tell them all about the process.

So, I am looking for something like MSMQ, but can be included in the installation package of the application.

+6
source share
3 answers

RabbitMQ will be my first choice.

+5
source

There is also DotNetMQ (and the related CodeProject link ).

+3
source

Source: https://habr.com/ru/post/917870/


All Articles