I would like to read subscription messages from service bus. I am using qpid-proton
library for python. I am following this link to receive messages Proton-Python-Example-Simple-Receive. I am passing this url to receive messages from service bus -
url = 'amqps://mynamespace.servicebus.windows.net/SharedAccessKeyName=xxxx/SharedAccessKey=xxxxxxxxx/python-test/Subscriptions/AllMessages'
# python-test is the name of the topic
# AllMessages is the name of the subscription
I am getting the following error - ERROR:root:The messaging entity 'sb://mynamespace.servicebus.windows.net/sharedaccesskeyname=xxxxx/sharedaccesskey=xxxxxxxxxxxxx/python-test/subscriptions/allmessages' could not be found. TrackingId:c1e4a39edbd44040b2fd48a552d6ae2b_G2, SystemTracker:gateway6, Timestamp:7/19/2017 7:58:51 AM
This is due to fact that the above URL is not formed correctly. I have searched over the net and no proper documentation is provided in this respect. What will be the correct URL format to read subscription messages through qpid.