views:

250

answers:

3

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?

A: 

these are two different messaging systems that are incompatible with each other.

mateuszb
A: 

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

James Strachan
A: 

You can expose RabbitMQ using the STOMP protocol. That means that you can interact (consume/produce) with RabbitMQ with clients written in any platform (even using Telnet).

Henryk Konsek