Bharani
Bharani

Reputation: 439

Is it possible to establish communication between multiple AMQP brokers

Is it possible to publish/consume messages to ActiveMQ using RabbitMQ libraries and vice versa? Both are AMQP brokers, So I want to check if this is possible or not.

I am asking this question as I have a usecase to migrate our current broker and I dont want my customer to do any changes while consuming messages. This can be any AMQP broker to any other AMQP broker communication

Upvotes: 0

Views: 181

Answers (1)

Justin Bertram
Justin Bertram

Reputation: 35093

ActiveMQ (both the 5.x and Artemis brokers) support AMQP 1.0. Therefore, any client which communicates over the AMQP 1.0 protocol can interact with the broker regardless of what other brokers that client may be working with.

Upvotes: 2

Related Questions