CREATING AN MQTT CONNECTION
The MQTT connector requires access to a MQTT broker.
Creating a Connection from the UI
You must have deployed a MQTT server prior to configuring a MQTT Connector instance. The MQTT server must be accessible from your ThingPark Enterprise server, and you need to know the path of MQTT topics you want to publish to (uplinks) or subscribe (downlinks).
You also need to know the parameters that are required to perform this task. To learn more, click Parameters required for connecting to a MQTT application below in this topic.
- Click Applications -> Create -> View More Applications Type.
Then, a new page will open. Select the connection type: MQTT
The application creation form is the same for a JSON enriched document as for a JSON legacy document.
- Fill in the form as in the example below.
Parameters marked with * are mandatory.
The Certificate and the Private Key are required for both SSL and WSS protocols. This does not apply to TCP.
- Click Create.
- A notification appears on the upper right side of your screen to confirm that the application has been created.
- After creating the application, you will be redirected to the application details.
The parameters are the following:
UI Field | Description |
---|---|
Application Name | Name of the application that you want to register (Editable). |
Uplink Topic Pattern | Defines a pattern of topic for the Uplink. |
Downlink Topic Pattern | Defines a pattern of topic for the Downlink. |
Host Name | The hostname/IP and port of your MQTT server. For example, "myhostname.com:8883". |
Protocol | Protocol to be used for your connection with your MQTT server. Choose among SSL, WSS and TCP. |
Username | The username to access your MQTT server. |
Password | The password to access your MQTT server. |
Certificate |
|
Private Key |
|
Description | Any useful information related to the application. |
QoS | Quality of Service (QoS) is an agreement between the message sender and receiver that defines the level of delivery guarantee for a specific message. |
Creating a Connection With API
MQTT over TLS v1.2 connection is the recommended protocol to use with MQTT Brokers. You need to create a MQTT Connector instance (Connection) before you can associate it to device(s). For more information, see Creating a Connection instance. The creation of a Connection establishes a link from ThingPark IoT Flow to the MQTT Broker. The link can be used to publish Uplink and related metadata information for any device associated to this instance of MQTT Connector, but will also publish messages that may have been redirected from other Connectors.
To do this, you need to use the following endpoints:
POST/connections
for creationPUT/connections
for modificationDELETE/connections
for deletion
When you want to update a configuration property on a Connection, you must provide all configuration properties again.
Example of the creation of a Connection.
POST /connections
{
"connectorId": "actility-mqtt-iot",
"name": "Actility MQTT (SSL) Connection",
"configuration": {
"description": "MQTT (SSL) connection example",
"uplinkTopicPattern": "mqtt/things/{DevEUI}/uplink",
"downlinkTopicPattern": "mqtt/things/{DevEUI}/downlink",
"hostName": "91.134.250.109:8883",
"protocol": "SSL",
"username": "mycompany",
"password": "bar",
"certificate": "-----BEGIN CERTIFICATE-----...-----END CERTIFICATE-----",
"privateKey": "-----BEGIN RSA PRIVATE KEY-----...-----END RSA PRIVATE KEY-----",
"qos": 1
}
}
The following table lists the expected results of the properties when applied.
Property | Expected results |
---|---|
connectorId | Must be set to actility-mqtt-iot for AWS IoT cloud platform. |
configuration/uplinkTopicPattern | Defines a pattern of topic for the Uplink. Could contain JSONPath expression, check common parameters section for examples. |
configuration/downlinkTopicPattern | Defines a pattern of topic for the Downlink. Could contain JSONPath expression, check common parameters section for examples. |
configuration/hostName | Hostname/IP and port of your MQTT Broker. |
configuration/protocol | Protocol to be used for the connection with your MQTT server, possible values are 'SSL' (MQTT over SSL), 'WSS' (MQTT over secure Web Sockets) or 'TCP' (MQTT over TCP without encryption). |
configuration/username | Login to access your MQTT Broker. |
configuration/trustedCaCertficate | Contents of the client CA certificate file (X.509 with .crt format only) used to connect to your MQTT server. Only required when your+ client certificate is not self-sign). |
configuration/certificate | Contents of the client certificate file (X.509 with .crt format only) used to connect to your MQTT server. Only required when you are using double factor authentication (login/password + client certificate). |
configuration/privateKey | Contents of the client private key file (PKCS#8 format only) used to connect to your MQTT server. Only required when you are using double factor authentication (login/password + client certificate). |
configuration/connectionTimeout | Max time needed for establishing a connection. (Default=5000ms, max=30000ms) |
configuration/actionTimeout | Max time available for each action like publishing a message or subscribe to a topic. (Default=1000ms, max = 10000ms) |
All properties are not present in this example. You can check the rest of these properties in the common parameters section.
Limitations
There are currently no known limitations to the MQTT connector.
How to test the MQTT Connection
-
Download and install a MQTT client, for example MQTT Explorer or MQTT.fx.
- Create a new connection and connect to the MQTT Broker using your configuration:
- Select the Subscribe tab, fill the uplink topic you want to monitor (that is,
mqtt/things/+/uplink
) and click Subscribe.
You should see incoming uplinks (published by your IoT Flow MQTT connector) in the right part of the screen.
In order to test the processing of subscribed topic messages by the MQTT connector, you need to properly format the message. LoRaWAN Commands targeted to a given DevEUI look like this:
mosquitto_pub \
-h $BROKER_PUBLIC \
-p $TLS_PUBLIC_LISTENER \
-u $SUPER_USERNAME \
-P $SUPER_PASSWORD \
-t "mqtt/things/A81758FFFE04F27E/downlink" \
-m '{
"DevEUI_downlink": {
"Time": "2022-06-08T15:50:00.882+02:00",
"DevEUI": "A81758FFFE04F27E",
"FPort": "8",
"payload_hex": "9e1c4852512000220020e3831071",
"Confirmed": "1",
"FlushDownlinkQueue": "1"
}
}'
Any other JSON message will be accepted and processed by the forwarding rules configured in the MQTT connector (forwarding rules do not apply to Commands). Messages not properly JSON-formatted will be ignored.
Troubleshooting
MQTT Broker timeouts
If your MQTT Broker is really far from the Actility platform, the network latency can cause the MQTT connection to timeout. These two parameters may need to be tuned accordingly :
Parameter | Description | Default |
---|---|---|
configuration/connectionTimeout | Max time allowed for establishing a connection. | Default=5s, max=10s |
configuration/actionTimeout | Max time available for each action, e.g. publishing a message or subscribe to a topic. | Default=1s, max = 10s |