SendMQTTMessage
Structure
SendMQTTMessage(sHost, sPort, sUser, sPassword, sClient, sTopic, bSSL, sMessage)
Parameters
| Parameter | Type | Description
| sHost | String | Host of the server to connect to.sPort | String | Port to send the message to.sUser | String | User to connect assPassword | String | Password to connect assClient | String | Client ID to usesTopic | String | Target Topic to send message tobSSL | Boolean | Whether to use SSL when connectingsMessage | String | The message to send. |
Return Value
"Message Sent." or error message describing the problem sending.
Description
This function connects to a server using the MQTT protocol and attempts to send a message to it. It always uses a clean session with QoS level 2.
Example
SendMQTTMessage("localhost", "1883", "", "", "IndyClient", "DemoTarget", false, "Test message from IndySoft")
Application Compatibility
All |