title | description | author | manager | ms.author | ms.service | services | ms.devlang | ms.topic | ms.custom | ms.date | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Quickstart: Send telemetry to Azure IoT Hub with Java |
In this quickstart, you run two sample Java applications to send simulated telemetry to an IoT hub and to read telemetry from the IoT hub for processing in the cloud. |
wesmc7777 |
philmea |
wesmc |
iot-hub |
iot-hub |
java |
quickstart |
|
05/26/2020 |
[!INCLUDE iot-hub-quickstarts-1-selector]
In this quickstart, you send telemetry to Azure IoT Hub and read it with a Java application. IoT Hub is an Azure service that enables you to ingest high volumes of telemetry from your IoT devices into the cloud for storage or processing. This quickstart uses two pre-written Java applications: one to send the telemetry and one to read the telemetry from the hub. Before you run these two applications, you create an IoT hub and register a device with the hub.
-
An Azure account with an active subscription. Create one for free.
-
Java SE Development Kit 8. In Java long-term support for Azure and Azure Stack, under Long-term support, select Java 8.
-
Port 8883 open in your firewall. The device sample in this quickstart 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).
You can verify the current version of Java on your development machine using the following command:
java -version
You can verify the current version of Maven on your development machine using the following command:
mvn --version
[!INCLUDE cloud-shell-try-it.md]
Run the following command to add the Microsoft Azure IoT Extension for Azure CLI to your Cloud Shell instance. The IoT Extension adds IoT Hub, IoT Edge, and IoT Device Provisioning Service (DPS) specific commands to Azure CLI.
az extension add --name azure-iot
[!INCLUDE iot-hub-cli-version-info]
[!INCLUDE iot-hub-include-create-hub]
A device must be registered with your IoT hub before it can connect. In this quickstart, you use the Azure Cloud Shell to register a simulated device.
-
Run the following command in Azure Cloud Shell to create the device identity.
YourIoTHubName: Replace this placeholder below with the name you chose for your IoT hub.
MyJavaDevice: This is the name of the device you're registering. It's recommended to use MyJavaDevice as shown. If you choose a different name for your device, you'll also need to use that name throughout this article, and update the device name in the sample applications before you run them.
az iot hub device-identity create --hub-name {YourIoTHubName} --device-id MyJavaDevice
-
Run the following command in Azure Cloud Shell to get the device connection string for the device you just registered:
YourIoTHubName: Replace this placeholder below with the name you chose for your IoT hub.
az iot hub device-identity show-connection-string --hub-name {YourIoTHubName} --device-id MyJavaDevice --output table
Make a note of the device connection string, which looks like:
HostName={YourIoTHubName}.azure-devices.net;DeviceId=MyJavaDevice;SharedAccessKey={YourSharedAccessKey}
You'll use this value later in the quickstart.
-
You also need the Event Hubs-compatible endpoint, Event Hubs-compatible path, and service primary key from your IoT hub to enable the back-end application to connect to your IoT hub and retrieve the messages. The following commands retrieve these values for your IoT hub:
YourIoTHubName: Replace this placeholder below with the name you chose for your IoT hub.
az iot hub show --query properties.eventHubEndpoints.events.endpoint --name {YourIoTHubName} az iot hub show --query properties.eventHubEndpoints.events.path --name {YourIoTHubName} az iot hub policy show --name service --query primaryKey --hub-name {YourIoTHubName}
Make a note of these three values, which you'll use later in the quickstart.
The simulated device application connects to a device-specific endpoint on your IoT hub and sends simulated temperature and humidity telemetry.
-
In a local terminal window, navigate to the root folder of the sample Java project. Then navigate to the iot-hub\Quickstarts\simulated-device folder.
-
Open the src/main/java/com/microsoft/docs/iothub/samples/SimulatedDevice.java file in a text editor of your choice.
Replace the value of the
connString
variable with the device connection string you made a note of earlier. Then save your changes to SimulatedDevice.java. -
In the local terminal window, run the following commands to install the required libraries and build the simulated device application:
mvn clean package
-
In the local terminal window, run the following commands to run the simulated device application:
java -jar target/simulated-device-1.0.0-with-deps.jar
The following screenshot shows the output as the simulated device application sends telemetry to your IoT hub:
The back-end application connects to the service-side Events endpoint on your IoT Hub. The application receives the device-to-cloud messages sent from your simulated device. An IoT Hub back-end application typically runs in the cloud to receive and process device-to-cloud messages.
-
In another local terminal window, navigate to the root folder of the sample Java project. Then navigate to the iot-hub\Quickstarts\read-d2c-messages folder.
-
Open the src/main/java/com/microsoft/docs/iothub/samples/ReadDeviceToCloudMessages.java file in a text editor of your choice. Update the following variables and save your changes to the file.
Variable Value EVENT_HUBS_COMPATIBLE_ENDPOINT
Replace the value of the variable with the Event Hubs-compatible endpoint you made a note of earlier. EVENT_HUBS_COMPATIBLE_PATH
Replace the value of the variable with the Event Hubs-compatible path you made a note of earlier. IOT_HUB_SAS_KEY
Replace the value of the variable with the service primary key you made a note of earlier. -
In the local terminal window, run the following commands to install the required libraries and build the back-end application:
mvn clean package
-
In the local terminal window, run the following commands to run the back-end application:
java -jar target/read-d2c-messages-1.0.0-with-deps.jar
The following screenshot shows the output as the back-end application receives telemetry sent by the simulated device to the hub:
[!INCLUDE iot-hub-quickstarts-clean-up-resources]
In this quickstart, you set up an IoT hub, registered a device, sent simulated telemetry to the hub using a Java application, and read the telemetry from the hub using a simple back-end application.
To learn how to control your simulated device from a back-end application, continue to the next quickstart.
[!div class="nextstepaction"] Quickstart: Control a device connected to an IoT hub