Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Help? #23

Open
logicalshrapnel opened this issue Nov 4, 2023 · 0 comments
Open

Help? #23

logicalshrapnel opened this issue Nov 4, 2023 · 0 comments

Comments

@logicalshrapnel
Copy link

logicalshrapnel commented Nov 4, 2023

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant