Does rabbitmq client support MQTT #1196
Replies: 2 comments 2 replies
-
If you want to use MQTT to connect to RabbitMQ, then use an MQTT client for .NET. Our team does not develop one and we do not implement multiple protocols in a single library. |
Beta Was this translation helpful? Give feedback.
-
I just needed to send the same response to MQTT as well as AMQP, so turns out this works fine: _channel.BasicPublish("", replyQueuename, props, body); // amqp
_channel.BasicPublish("amq.topic", replyQueuename, props, body); // mqtt According to https://www.rabbitmq.com/mqtt.html#implementation the MQTT plugin for RabbitMQ binds to Now for consuming MQTT I just use MQTTnet |
Beta Was this translation helpful? Give feedback.
-
I want to use the RabbitMQ MQTT, but I am not sure if the rabbitmq client support this. Have some samples?
Beta Was this translation helpful? Give feedback.
All reactions