MQTT Will Message
EMQX implements the will message feature of MQTT. If a will message is set for a client, EMQX sends the message to relevant subscribers when the client is accidentally disconnected, so that the subscribers can be informed and update the client status.
You can use client tools to try this messaging service in EMQX. This section introduces how to use the MQTTX Desktop and MQTTX CLI to simulate clients and see how a will message is published and received.
Prerequisites
- Knowledge about MQTT Will Message
- Basic publishing and subscribing operations using MQTTX
Publish Will Message with MQTTX Desktop
Start EMQX and MQTTX Desktop. Click the New Connection to create a client connection as a publisher.
- Enter
Demo
in the Name field. - Enter the localhost
127.0.0.1
in Host to use as an example in this demonstration. - Leave other settings as default and click Connect.
TIP
More detailed instructions on creating an MQTT connection are introduced in MQTTX Desktop.
Scroll down the page and in Last Will and Testament section, fill in the will message configuration.
- Last-Will Topic: Enter
offline
. - Last-Will QoS: Set as the default value
0
. - Last-Will Retain: Set disabled as default. If enabled, the will message will also be a retained message.
- Last-Will Payload: Enter
I'm offline
. - Will Delay Intervals (s): Set
5
seconds.
Leave the rest settings as default. Click the Connect button.
- Enter
In the Connections pane, click + -> New Connection to create a new client connection. Set the connection Name as
Subscriber
and Host as127.0.0.1
. Leave other settings as default and click Connect.Click New Subscription in the Subscriber pane. Enter
offline
in the Topic textbox. Leave the other settings as default. Click the Confirm button.Select the client connection named
Demo
in the Connections pane. Right-click and select New Window. In the new window, click the Connect button.Close the new window and wait for 5 seconds. The client
Subscriber
receives a will messageI'm offline
.
Publish Will Message with MQTTX CLI
Initiate a connection request with one client. Set the topic to
t/1
and payload toA will message from MQTTX CLI
:bash$ mqttx conn -h 'localhost' -p 1883 --will-topic 't/1' --will-message 'A will message from MQTTX CLI' Connected
Subscribe to topic
t/1
with another client for receiving the will messages:bashmqttx sub -t 't/1' -h 'localhost' -p 1883 -v
Disconnect the client specified in step 1, then the client specified in step 2 will receive the will message:
bashtopic: t/1 payload: A will message from MQTTX CLI