We have C++ Software that needs to send message via RabbitMQ broker, has somebody tried ActiveMQ CPP lib (CMS) to send/receive messages to RabbitMQ broker?
3 Answers
3
votes
the CMS API is a generic API for messaging which supports a number of different providers. There's nothing stopping someone implementing the CMS API on top of some AMQP C client library for example.
However since CMS supports Stomp it should be possible to communicate with RabbitMQ as well as pretty much any other JMS provider via StompConnect
1
votes