Sending messages to Azure Service Bus topic using the Azure::ServiceBus ruby SDK works fine. The client is using a subscription and Azure::ServiceBus to receive the messages.
However, if the sender uses the ASB REST API to POST a message, the subscription has no messages. Only messages sent using Azure::ServiceBus appear in the subscription.
e.g this works fine for messages sent using Azure::ServiceBus but doesn't receive anything for messages sent using REST:
message = azure_service_bus_service.receive_subscription_message("testtopic", "retry-count-subscriber", { :peek_lock => true })
ASB returns 201 for POSTing so the messages are successfully sent to the topic.
