connection amqp - assimbly/gateway GitHub Wiki
The AMQP connection creates a (shared) connection to an AMQP broker. For this it uses a QPID client
Required fields
- URL
The basic URL is amqp://host:port
Examples:
- amqp url: amqp://localhost:5672
- amqps url: amqps://localhost:5672
- multiple urls: failover:(amqp://localhost:5673,amqp://localhost:5674)
- urls with options: failover:(amqp://localhost:5673,amqp://localhost:5674)?maxInactivityDurationInitialDelay=60000
Notes:
- Amqps urls are automatically connected to the certificate store.
- On an authorized client you need username and password. If not needed you can delete them from the service properties.