Send cloud-to-device messages with IoT Hub (Java)
Azure IoT Hub is a fully managed service that helps enable reliable and secure bi-directional communications between millions of devices and a solution back end.
This article shows you how to:
Send cloud-to-device messages, from your solution backend, to a single device through IoT Hub
Receive cloud-to-device messages on a device
Request delivery acknowledgment (feedback), from your solution backend, for messages sent to a device from IoT Hub
Note
The features described in this article are available only in the standard tier of IoT Hub. For more information about the basic and standard/free IoT Hub tiers, see Choose the right IoT Hub tier for your solution.
At the end of this article, you run two Java console apps:
SimulatedDevice: a modified version of the app created in Send telemetry from a device to an IoT hub, which connects to your IoT hub and receives cloud-to-device messages.
SendCloudToDevice: sends a cloud-to-device message to the device app through IoT Hub and then receives its delivery acknowledgment.
Note
IoT Hub has SDK support for many device platforms and languages (C, Java, Python, and JavaScript) through the Azure IoT device SDKs.
To learn more about cloud-to-device messages, see Send cloud-to-device messages from an IoT hub.
Prerequisites
A complete working version of the Send telemetry from a device to an IoT hub quickstart or the Configure message routing with IoT Hub article. This cloud-to-device article builds on the quickstart.
Java SE Development Kit 8. Make sure you select Java 8 under Long-term support to get to downloads for JDK 8.
Make sure that port 8883 is open in your firewall. The device sample in this article uses MQTT protocol, which communicates over port 8883. This port may be blocked in some corporate and educational network environments. For more information and ways to work around this issue, see Connecting to IoT Hub (MQTT).
Receive messages in the simulated device app
In this section, modify your device app to receive cloud-to-device messages from the IoT hub.
Using a text editor, open the simulated-device\src\main\java\com\mycompany\app\App.java file.
Add the following MessageCallback class as a nested class inside the App class. The execute method is invoked when the device receives a message from IoT Hub. In this example, the device always notifies the IoT hub that it has completed the message:
private static class AppMessageCallback implements MessageCallback { public IotHubMessageResult execute(Message msg, Object context) { System.out.println("Received message from hub: " + new String(msg.getBytes(), Message.DEFAULT_IOTHUB_MESSAGE_CHARSET)); return IotHubMessageResult.COMPLETE; } }
Modify the main method to create an AppMessageCallback instance and call the setMessageCallback method before it opens the client as follows:
client = new DeviceClient(connString, protocol); MessageCallback callback = new AppMessageCallback(); client.setMessageCallback(callback, null); client.open();
To build the simulated-device app using Maven, execute the following command at the command prompt in the simulated-device folder:
mvn clean package -DskipTests
The execute
method in the AppMessageCallback
class returns IotHubMessageResult.COMPLETE
. This notifies IoT Hub that the message has been successfully processed and that the message can be safely removed from the device queue. The device should return this value when its processing successfully completes regardless of the protocol it's using.
With AMQP and HTTPS, but not MQTT, the device can also:
- Abandon a message, which results in IoT Hub retaining the message in the device queue for future consumption.
- Reject a message, which which permanently removes the message from the device queue.
If something happens that prevents the device from completing, abandoning, or rejecting the message, IoT Hub will, after a fixed timeout period, queue the message for delivery again. For this reason, the message processing logic in the device app must be idempotent, so that receiving the same message multiple times produces the same result.
For more information about the cloud-to-device message lifecycle and how IoT Hub processes cloud-to-device messages, see Send cloud-to-device messages from an IoT hub.
Note
If you use HTTPS instead of MQTT or AMQP as the transport, the DeviceClient instance checks for messages from IoT Hub infrequently (a minimum of every 25 minutes). For more information about the differences between MQTT, AMQP, and HTTPS support, see Cloud-to-device communications guidance and Choose a communication protocol.
Get the IoT hub connection string
In this article you create a backend service to send cloud-to-device messages through your IoT Hub. To send cloud-to-device messages, your service needs the service connect permission. By default, every IoT Hub is created with a shared access policy named service that grants this permission.
To get the IoT Hub connection string for the service policy, follow these steps:
In the Azure portal, select Resource groups. Select the resource group where your hub is located, and then select your hub from the list of resources.
On the left-side pane of your IoT hub, select Shared access policies.
From the list of policies, select the service policy.
Copy the Primary connection string and save the value.
For more information about IoT Hub shared access policies and permissions, see Access control and permissions.
Send a cloud-to-device message
In this section, you create a Java console app that sends cloud-to-device messages to the simulated device app. You need the device ID from your device and your IoT hub connection string.
Create a Maven project called send-c2d-messages using the following command at your command prompt. Note this command is a single, long command:
mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=send-c2d-messages -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
At your command prompt, navigate to the new send-c2d-messages folder.
Using a text editor, open the pom.xml file in the send-c2d-messages folder and add the following dependency to the dependencies node. Adding the dependency enables you to use the iothub-java-service-client package in your application to communicate with your IoT hub service:
<dependency> <groupId>com.microsoft.azure.sdk.iot</groupId> <artifactId>iot-service-client</artifactId> <version>1.7.23</version> </dependency>
Note
You can check for the latest version of iot-service-client using Maven search.
Save and close the pom.xml file.
Using a text editor, open the send-c2d-messages\src\main\java\com\mycompany\app\App.java file.
Add the following import statements to the file:
import com.microsoft.azure.sdk.iot.service.*; import java.io.IOException; import java.net.URISyntaxException;
Add the following class-level variables to the App class, replacing {yourhubconnectionstring} and {yourdeviceid} with the values you noted earlier:
private static final String connectionString = "{yourhubconnectionstring}"; private static final String deviceId = "{yourdeviceid}"; private static final IotHubServiceClientProtocol protocol = IotHubServiceClientProtocol.AMQPS;
Replace the main method with the following code. This code connects to your IoT hub, sends a message to your device, and then waits for an acknowledgment that the device received and processed the message:
public static void main(String[] args) throws IOException, URISyntaxException, Exception { ServiceClient serviceClient = ServiceClient.createFromConnectionString( connectionString, protocol); if (serviceClient != null) { serviceClient.open(); FeedbackReceiver feedbackReceiver = serviceClient .getFeedbackReceiver(); if (feedbackReceiver != null) feedbackReceiver.open(); Message messageToSend = new Message("Cloud to device message."); messageToSend.setDeliveryAcknowledgement(DeliveryAcknowledgement.Full); serviceClient.send(deviceId, messageToSend); System.out.println("Message sent to device"); FeedbackBatch feedbackBatch = feedbackReceiver.receive(10000); if (feedbackBatch != null) { System.out.println("Message feedback received, feedback time: " + feedbackBatch.getEnqueuedTimeUtc().toString()); } if (feedbackReceiver != null) feedbackReceiver.close(); serviceClient.close(); } }
Note
For simplicity, this article does not implement a retry policy. In production code, you should implement retry policies (such as exponential backoff) as suggested in the article Transient Fault Handling.
To build the simulated-device app using Maven, execute the following command at the command prompt in the simulated-device folder:
mvn clean package -DskipTests
Run the applications
You are now ready to run the applications.
At a command prompt in the simulated-device folder, run the following command to begin sending telemetry to your IoT hub and to listen for cloud-to-device messages sent from your hub:
mvn exec:java -Dexec.mainClass="com.mycompany.app.App"
At a command prompt in the send-c2d-messages folder, run the following command to send a cloud-to-device message and wait for a feedback acknowledgment:
mvn exec:java -Dexec.mainClass="com.mycompany.app.App"
Next steps
In article, you learned how to send and receive cloud-to-device messages.
To learn more about cloud-to-device messages, see Send cloud-to-device messages from an IoT hub.
To learn more about IoT Hub message formats, see Create and read IoT Hub messages.