---
title: "HTTP/S Support for Meshlet"
canonical: "https://docs.perspectium.com/space/Iodine/1705247/HTTP%2FS%20Support%20for%20Meshlet"
format: markdown
---
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: Directive Description 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)   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