com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.

MQ Telemetry Transport

MQ Telemetry Transport (MQTT) is a simple and lightweight network protocol for device communication. This is an easy to implement protocol that is based on the principle of publish/subscribe. These characteristics make MQTT ideal for use in constrained environments.

For example,

  • When the network is expensive, has low bandwidth or is unreliable.
  • When running on an embedded device with limited processor or memory resources.

The MQTT transport implementation requires an MQTT server instance to be able to send and receive messages. The recommended MQTT server is the Mosquitto message broker. 

Configuration parameters for the MQTT receiver and sender are XML fragments that represent MQTT connection factories.

Following is a sample MQTT connection factory configuration that consists of four connection factory parameters:

<parameter locked="false" name="mqttConFactory">
                <parameter locked="false" name="mqtt.server.host.name">localhost</parameter>
                <parameter locked="false" name="mqtt.server.port">1883</parameter>
                <parameter locked="false" name="mqtt.client.id">esb.test.listener</parameter>
                <parameter locked="false" name="mqtt.topic.name">esb.test2</parameter>
</parameter>

MQTT connection factory parameters

Following are details on the MQTT parameters that you can set:

Parameter Name

Description

Required

Possible Values

mqtt.server.host.nameThe name of the host.

Yes

A valid host name

mqtt.server.portThe port ID.Yes1883,1885
mqtt.client.idThe client ID.YesA valid client ID
mqtt.topic.nameThe name of the topicYesA valid topic name
mqtt.subscription.qosThe QoS value.No

0,1,2

mqtt.session.cleanWhether session clean should be enabled or not.Notrue, false
mqtt.ssl.enableWhether ssl should be enabled or not.Notrue , false
mqtt.subscription.usernameThe username for the subscription.NoA valid user name
mqtt.subscription.passwordThe password for the subscription.NoA valid password
mqtt.temporary.store.directoryThe path of the directory to be used as the persistent data store for quality of service purposes.NoA valid local path. The default value is the ESB temp path.
mqtt.blocking.senderWhether blocking sender should be enabled or not.Notrue , false
mqtt.content.typeThe content type.NoA valid content type. the default content type is text/plain.
mqtt.message.retainedWhether the messaging engine should retain a published message or not. This parameter can be used only in the transport sender.Notrue, false
The default value is false.

For a sample that demonstrates how Axis2 publishes a message on a particular topic, and how an MQTT client subscribed to that topic receives it, see  /wiki/spaces/EI6xx/pages/49611158.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.