By default, the Meshlet connects to the Perspectium Integration Mesh over AMQP/AMQPS. If you are unable to use this protocol, the meshlet provides HTTP/HTTPS support as another way to connect to the Perspectium Integration Mesh.


To connect to the Perspectium Integration Mesh over HTTP/HTTPS, you will need the following values:

DirectiveDescription

url

Perspectium Mesh URL 

e.g., https://mymesh.perspectium.net

username

Perspectium Mesh username

password

Perspectium Mesh password

pollingInterval

(Optional) Interval for how often the meshlet pulls from the queue (milliseconds)
The default value is 10000 milliseconds (10 seconds)

(info) NOTE: Depending on which Integration Mesh you are connecting to, https may be the only connection available. Contact Perspectium Support for more information. 


Example application-dev.yml configuration

The example below shows part of the configuration that must be set to have the meshlet connect to the Integration Mesh :

perspectium:
    http:
        url: https://mymesh.perspectium.net
        username: userExample
        password: userPassword
        pollingInterval: 10000