Skip to content

A prescriptive guidance on how an AWS device IOT publisher and consumer can be implemented using Microsoft .NET and .NET core framework.

License

Notifications You must be signed in to change notification settings

aws-samples/iot-dotnet-publisher-consumer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 



1.Objective

The aim of this repository is to offer guidance on how to communicate with AWS IoT Core using .NET Framework and .NET Core. The code samples published in this repository leverages X509 Certificate for communicating with AWS IoT Core using MQTT protocol.

2. Why .NET/.NET Core Device Publisher and Device Consumer for AWS IoT

At this point in time, there is no AWS IoT Device SDK available for .NET Framework and .NET Core. The .NET Framework and .NET Core are widely adoped by a large community of enterprise developers. When the IoT Edge node is a virtual machine, it paves way for leveraging programming language like C# for implementing Cloud Connector component. The enterprise developers can integrate this Cloud Connector functionality into Console Application, Windows Application and Xamarin mobile applications.

3. AWS IoT Device Publisher and Consumer using .NET Framework

3a. Development Environment

  • Windows 10
  • Visual Studio 2017 with latest updates
  • Windows Subsystem for Linux

3b. Create an AWS IoT Thing

You can run the automated provisioning script to create an AWS IoT thing, or choose to walk through the provisioning actions manually in the console.

Running the provisioning script

Navigate to the 'dotnetsamples' folder and execute the provision_thing.ps1 PowerShell script. This script handles the setup for the .NET Framework examples in this repository including:

  • Downloading the Amazon Root CA certificate.
  • Generating a new certificate in AWS IoT.
  • Converting the private key to .PFX format.
  • Registering an AWS IoT thing with the created certificate.
  • Configuring the sample code to use your account's AWS IoT custom endpoint URL.

You can skip to section 3c if you chose to execute the script.

Manually Creating an AWS IoT Thing

Alternatively, you can manually create an IoT thing using the AWS IoT console. To start, let's navigate to the console and create an IoT thing called 'dotnetdevice'.

Let's associate the following policy with the thing.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Action": [
        "iot:Publish",
        "iot:Subscribe",
        "iot:Connect",
        "iot:Receive"
      ],
      "Effect": "Allow",
      "Resource": [
        "*"
      ]
    }
  ]
}

During the Thing creation process you should get the following four security artifacts. Start by creating a 'certificates' folder at 'dotnetsamples\certificates'.

  • Device certificate - This file usually ends with ".pem.crt". When you download this it will save as .txt file extension in windows. Save it in your certificates directory as 'certificates\certificate.cert.pem' and make sure that it is of file type '.pem', not 'txt' or '.crt'

  • Device public key - This file usually ends with ".pem" and is of file type ".key". Save this file as 'certificates\certificate.public.key'.

  • Device private key - This file usually ends with ".pem" and is of file type ".key". Save this file as 'certificates\certificate.private.key'. Make sure that this file is referred with suffix ".key" in the code while making MQTT connection to AWS IoT.

  • Root certificate - Download from https://www.amazontrust.com/repository/AmazonRootCA1.pem. Save this file to 'certificates\AmazonRootCA1.crt'

Converting Device Certificate from .pem to .pfx

In order to establish an MQTT connection with the AWS IoT platform, the root CA certificate, the private key of the thing, and the certificate of the thing/device are needed. The .NET cryptographic APIs can understand root CA (.crt), device private key (.key) out-of-the-box. It expects the device certificate to be in the .pfx format, not the .pem format. Hence we need to convert the device certificate from .pem to .pfx.

We'll leverage the openssl for converting .pem to .pfx. Navigate to the folder where all the security artifacts are present and launch bash for Windows 10.

The syntax for converting .pem to .pfx is below:

openssl pkcs12 -export -in iotdevicecertificateinpemformat -inkey iotdevivceprivatekey -out devicecertificateinpfxformat -certfile rootcertificatefile

If you replace with actual file names the syntax will look like below

openssl pkcs12 -export -in certificates\certificate.cert.pem -inkey certificates\certificate.private.key -out certificates\certificate.cert.pfx -certfile certificates\AmazonRootCA1.crt

3c. Device Publisher using .NET Framework

Let's create a windows application in Visual Studio 2017 and name it as 'Iotpublisher'.

On project reference --> Manage Nuget pakcages --> Browse --> 'M2mqtt' and install M2mqtt.

Import the following namespaces.

using System;
using System.Text;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using uPLibrary.Networking.M2Mqtt;
using System.IO;

Then create an instance of Mqtt client object with IoT endpoint, broker port for MQTT, X509Certificate object for root certificate, X5092certificate object for device certificate and Mqttsslprotocols enumeration for TLS1.2.

Once the connection is successful, publish to AWS IoT by specifying the topic and payload. The following code snippet covers all of these. Be sure to update the iotEndpoint variable with the name of your account's IoT endpoint if it was not updated when running the provisioning script.

string iotEndpoint = "<<your-iot-endpoint>>";
Console.WriteLine("AWS IoT Dotnet message publisher starting..");

int brokerPort = 8883;
string topic = "Hello/World";
string message = "Test message";

var caCert = X509Certificate.CreateFromCertFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "AmazonRootCA1.crt"));
var clientCert = new X509Certificate2(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "certificate.cert.pfx"), "MyPassword1");

var client = new MqttClient(iotEndpoint, brokerPort, true, caCert, clientCert, MqttSslProtocols.TLSv1_2);

string clientId = Guid.NewGuid().ToString();
client.Connect(clientId);
Console.WriteLine($"Connected to AWS IoT with client id: {clientId}.");

int i = 0;
while (true)
{
    client.Publish(topic, Encoding.UTF8.GetBytes($"{message} {i}"));
    Console.WriteLine($"Published: {message} {i}");
    i++;
    Thread.Sleep(5000);
}
            

Hit F5 in visual studio and you should see the messages getting pushed to the AWS IoT MQTT topic.

The complete Visual Studio solution for this publisher is available under the 'Dotnetsamples' folder in this repository.

3d. Device Consumer using .NET Framework

Let's create a windows application in Visual Studio 2017 and name it as 'Iotconsumer'.

On project reference --> Manage Nuget pakcages --> Browse --> 'M2mqtt' and install M2mqtt.

Import the following namespaces.

using System;
using uPLibrary.Networking.M2Mqtt;
using uPLibrary.Networking.M2Mqtt.Messages;
using System.Security.Cryptography.X509Certificates;
using System.IO;
using System.Threading;
using System.Text;

Then create an instance of Mqtt client object with IoT endpoint, broker port for MQTT, X509Certificate object for root certificate, X5092certificate object for device certificate and Mqttsslprotocols enumeration for TLS1.2.

You can subscribe to the AWS IoT messages by specifying the Topic as string array and QoS level as byte array. Prior to this event callbacks for MqttMsgSubscribed and MqttMsgPublishReceived should be implemented. The following code snippet covers all of that. Be sure to update the iotEndpoint variable with the name of your account's IoT endpoint if it was not updated when running the provisioning script.

private static ManualResetEvent manualResetEvent;

static void Main(string[] args)
{
    string iotEndpoint = "<<your-iot-endpoint>>";
    int brokerPort = 8883;

    Console.WriteLine("AWS IoT dotnet message consumer starting..");

    var caCert = X509Certificate.CreateFromCertFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "AmazonRootCA1.crt"));
    var clientCert = new X509Certificate2(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "certificate.cert.pfx"), "MyPassword1");
    
    var client = new MqttClient(iotEndpoint, brokerPort, true, caCert, clientCert, MqttSslProtocols.TLSv1_2);
    client.MqttMsgPublishReceived += Client_MqttMsgPublishReceived;
    client.MqttMsgSubscribed += Client_MqttMsgSubscribed;

    string clientId = Guid.NewGuid().ToString();
    client.Connect(clientId);
    Console.WriteLine($"Connected to AWS IoT with client ID: {clientId}");

    string topic = "Hello/World";
    client.Subscribe(new string[] { topic }, new byte[] { MqttMsgBase.QOS_LEVEL_AT_LEAST_ONCE });

    // Keep the main thread alive for the event receivers to get invoked
    KeepConsoleAppRunning(() => {
        client.Disconnect();
        Console.WriteLine("Disconnecting client..");
    });
}

private static void Client_MqttMsgSubscribed(object sender, MqttMsgSubscribedEventArgs e)
{
    Console.WriteLine($"Successfully subscribed to the AWS IoT topic.");
}

private static void Client_MqttMsgPublishReceived(object sender, MqttMsgPublishEventArgs e)
{
    Console.WriteLine("Message received: " + Encoding.UTF8.GetString(e.Message));
}

private static void KeepConsoleAppRunning(Action onShutdown)
{
    manualResetEvent = new ManualResetEvent(false);
    Console.WriteLine("Press CTRL + C or CTRL + Break to exit...");

    Console.CancelKeyPress += (sender, e) =>
    {
        onShutdown();
        e.Cancel = true;
        manualResetEvent.Set();
    };

    manualResetEvent.WaitOne();
}

The complete visual studio solution for this publisher is available under the 'Dotnetsamples' folder in this repository.

Hit F5 in Visual Studio and you should see the messages getting consumed by subscriber.

4. AWS IoT Device Publisher and Consumer using .NET Core

4a. Development Environment

The following constitutes the development environment for developing AWS IoT device publisher and consumer using .NET Core.

  • Ubuntu 20.0.4 or higher (or) any other latest Linux distros
  • .NET Core 2.0 or higher
  • AWS cli
  • Openssl latest version

4b. Create an AWS IoT Thing

Navigate to the 'dotnetcoresamples' folder and execute the provision_thing.sh shell script. This script handles the setup for the .NET Core examples, following the same steps as the PowerShell script in the .NET Framework examples.

Alternatively, you can copy the certificates created in the .NET Framework example to a 'Dotnetcoresamples\certificates' folder or follow the same steps to create a new Thing and certificate.

4d. Device Publisher using .NET core

Let's create the .NET Core console application for the producer by issuing the following commands in the terminal.

mkdir Iotdotnetcorepublisher
cd Iotdotnetcorepublisher
dotnet new console
dotnet add package M2MqttClientDotnetCore --version 1.0.1
dotnet restore

Open Program.cs in Visual Studio and import the following namespaces.

using System;
using System.IO;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using M2Mqtt;

Then perform a 'dotnet restore' in the terminal. It will grab the assemblies for System.Security.Cryptography.X509Certificates.

Then create an instance of Mqtt client object with IoT endpoint, broker port for MQTT, X509Certificate object for root certificate, X5092certificate object for device certificate and Mqttsslprotocols enumeration for TLS1.2.

Once the connection is successful publish to AWS IoT by specifying the topic and payload. The following code snippet covers all of these. Be sure to update the iotEndpoint variable with the name of your account's IoT endpoint if it was not updated when running the provisioning script.

string iotEndpoint = "<<your-iot-endpoint>>";
Console.WriteLine("AWS IoT Dotnet core message publisher starting");
int brokerPort = 8883;

string message = "Test message";
string topic = "Hello/World";

var caCert = X509Certificate.CreateFromCertFile(Path.Join(AppContext.BaseDirectory, "AmazonRootCA1.crt"));
var clientCert = new X509Certificate2(Path.Join(AppContext.BaseDirectory, "certificate.cert.pfx"), "MyPassword1");

var client = new MqttClient(iotEndpoint, brokerPort, true, caCert, clientCert, MqttSslProtocols.TLSv1_2);

string clientId = Guid.NewGuid().ToString();
client.Connect(clientId);
Console.WriteLine($"Connected to AWS IoT with client id: {clientId}.");

int i = 0;
while (true)
{
    client.Publish(topic, Encoding.UTF8.GetBytes($"{message} {i}"));
    Console.WriteLine($"Published: {message} {i}");
    i++;
    Thread.Sleep(5000);
}

Run the application using 'dotnet run' and you should see messages published by dotnet core.

4e. Device Consumer using .NET Core

Let's create the .NET Core console application for the consumer by issuing the following commands in the Terminal.

mkdir Iotdotnetcoreconsumer
cd Iotdotnetcoreconsumer
dotnet new console
dotnet add package M2MqttClientDotnetCore --version 1.0.1
dotnet restore

Open the Program.cs in Visual Studio and import the following namespaces.

using System;
using System.IO;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using M2Mqtt;
using M2Mqtt.Messages;

Then perform a 'dotnet restore' in the terminal. It will grab the assemblies for System.Security.Cryptography.X509Certificates.

Then create an instance of Mqtt client object with IoT endpoint, broker port for MQTT, X509Certificate object for root certificate, X5092certificate object for device certificate and Mqttsslprotocols enumeration for TLS1.2.

You can subscribe to the AWS IoT messages by specifying the Topic as string array and Qos level as byte array. Prior to this event callbacks for MqttMsgSubscribed and MqttMsgPublishReceived should be implemented. The following code snippet covers all of that. Make sure to update the iotEndpoint variable with the name of your account's IoT endpoint if it was not updated when running the provisioning script.

private static ManualResetEvent manualResetEvent;

static void Main(string[] args)
{
    string iotEndpoint = "<<your-iot-endpoint>>";
    int brokerPort = 8883;
    
    Console.WriteLine("AWS IoT dotnetcore message consumer starting..");
    var caCert = X509Certificate.CreateFromCertFile(Path.Join(AppContext.BaseDirectory, "AmazonRootCA1.crt"));
    var clientCert = new X509Certificate2(Path.Join(AppContext.BaseDirectory, "certificate.cert.pfx"), "MyPassword1");

    var client = new MqttClient(iotEndpoint, brokerPort, true, caCert, clientCert, MqttSslProtocols.TLSv1_2);

    client.MqttMsgSubscribed += IotClient_MqttMsgSubscribed;
    client.MqttMsgPublishReceived += IotClient_MqttMsgPublishReceived;

    string clientId = Guid.NewGuid().ToString();
    client.Connect(clientId);
    Console.WriteLine($"Connected to AWS IoT with client ID: {clientId}");

    string topic = "Hello/World";
    Console.WriteLine($"Subscribing to topic: {topic}");
    client.Subscribe(new string[] { topic }, new byte[] {MqttMsgBase.QOS_LEVEL_AT_LEAST_ONCE });

    // Keep the main thread alive for the event receivers to get invoked
    KeepConsoleAppRunning(() => {
        client.Disconnect();
        Console.WriteLine("Disconnecting client..");
    });
}

private static void IotClient_MqttMsgPublishReceived(object sender, MqttMsgPublishEventArgs e)
{
    Console.WriteLine("Message received: " + Encoding.UTF8.GetString(e.Message));
}

private static void IotClient_MqttMsgSubscribed(object sender, MqttMsgSubscribedEventArgs e)
{
    Console.WriteLine($"Successfully subscribed to the AWS IoT topic.");
}

private static void KeepConsoleAppRunning(Action onShutdown)
{
    manualResetEvent = new ManualResetEvent(false);
    Console.WriteLine("Press CTRL + C or CTRL + Break to exit...");

    Console.CancelKeyPress += (sender, e) =>
    {
        onShutdown();
        e.Cancel = true;
        manualResetEvent.Set();
    };

    manualResetEvent.WaitOne();
}

The complete .NET Core project source for the publisher is available under the Dotnetcoresamples folder in this repository.

Run the application using 'dotnet run' and you should see messages consumed by the dotnetcore

About

A prescriptive guidance on how an AWS device IOT publisher and consumer can be implemented using Microsoft .NET and .NET core framework.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published