Reputation: 1102
Is it possible to use RabbitMQ Java client to work directly with Windows Service Bus via AMQP?
According to documentation, supported Java clients are:
Has anyone tried the RabbitMQ Java Client?
Upvotes: 1
Views: 688
Reputation: 10075
Microsoft Azure Service Bus uses AMQP 1.0 and the RabbitMQ Java Client is compliant to AMQP 0.9.1 using concepts like exchange and binding (other than queue). All above concepts were removed in the new AMQP 1.0 specification. It means that you can't use RabbitMQ Java Client to access Service Bus in Azure.
Paolo.
Upvotes: 3