0

From the following link, I found out that we can send data to publisher over AMQP protocol, https://github.com/ppatierno/azuresblite-examples. So, how to implement the same, i.e) Send to publisher(with & without token), using Qpid-proton python?

Ram Prasad
  • 129
  • 1
  • 1
  • 8

1 Answers1

-1

send to a publisher means sending the message to a path like :

/Publishers/

You can use it as address for publishing message.

Paolo.

ppatierno
  • 9,431
  • 1
  • 30
  • 45
  • Thanks Paolo! Will the message get stored in Event Hub partitions and be viewed through some tool, like Service Bus Explorer? – Ram Prasad Sep 29 '15 at 11:34
  • Yes you can create listeners on event hub using Service Bus EXplorer and get all messages. – ppatierno Sep 29 '15 at 12:00
  • Okay, but I already sent the message to Event Hubs using Qpid-Proton to the uri: python send.py -a amqps://:@.servicebus.windows.net//Publishers/. The message is sent, but in Service bus Explorer (created a consumer group listener for $Default, no other is using that group) I get nothing. Because of this result, I asked the question in previous comment. – Ram Prasad Sep 29 '15 at 12:56
  • Are you sure that the message is sent ? I never used the python client but the C client. – ppatierno Sep 29 '15 at 15:29