Connect to Azure Service Bus using RabbitMQ.Client #1353
-
I am migrating set of services to Azure cloud environment and need to publish and consume messages, as message broker is selected Azure Service Bus, so I am trying to migrate with minimal changes. From Service Bus docs, I found how to convert SAS Policy Connection string to AMQP Connection String (https://red-mushroom-0f7446a0f.azurestaticapps.net/)
and on creation connection / model I'm getting error
So the question, is the client not properly configured? Or the client library is nor supposed to use in such case? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Start with |
Beta Was this translation helpful? Give feedback.
-
This client implements AMQP 0-9-1, Azure Service Bus only implements AMQP 1.0 (a completely different protocols despite the name). Use an AMQP 1.0 client or use this client with RabbitMQ (which supports AMQP 0-9-1, AMQP 1.0, RabbitMQ Stream Protocol, MQTTv3 and soon MQTTv5, STOMP) |
Beta Was this translation helpful? Give feedback.
This client implements AMQP 0-9-1, Azure Service Bus only implements AMQP 1.0 (a completely different protocols despite the name).
Use an AMQP 1.0 client or use this client with RabbitMQ (which supports AMQP 0-9-1, AMQP 1.0, RabbitMQ Stream Protocol, MQTTv3 and soon MQTTv5, STOMP)