-
Notifications
You must be signed in to change notification settings - Fork 8
Description
I'm trying to connect this using the details described here:
{
"Type": 0,
"Host": "ZapCloud.servicebus.windows.net",
"Port": 5671,
"UseSSL": true,
"Username": "installation_xxxxx",
"Password": "yyyyyy",
"Topic": "installation_xxxxx",
"Subscription": "default"
}
Enabling a subscription will configure an Azure Service Bus Topic for your installation. Messages received from installation chargers will be broadcast to this topic.
There is a wide range of options available for receiving messages from Azure Service Bus
In addition to using Microsoft’s Service Bus libraries, it is also possible to consume messages using the standard protocol AMQP 1.0 detailed here
Connection details can be combined as a Service Bus connection string:
Endpoint=sb://{Host}/;SharedAccessKeyName={UserName};SharedAccessKey={Pass word};EntityPath={Topic}
Messages are published to a topic, but can only be received from the topic subscription.
Depending on the library used to connect to the service bus topic, you may need to combine the topic and subscription name in your connection settings. The full name of the topic subscriptions is: {Topic}/subscriptions/{Subscription}
Using the host + port + username + pass per the fields in the receive node (all other settings untouched) I manage to create a connection that says "connected". But no matter what I write as "address" I fail to receive any push notifications.
As I'm completely new to amqp I'm struggling. Any suggestions?