Azure IOT Devices.Client SDK V 1.41.3 creating client and opening connection timeout troubleshooting.

KS 0 Reputation points
2023-06-21T15:03:41.94+00:00

I`m using Microsoft.Azure.Devices.Client v 1.41.3 SDK to create iot client and connect to Azure IoT hub. Mostly it works fine, but in some specific environments, there are difficulties to create client and/or open connections. ConnectionStatusChangesHandler getting back with status: Disconnected and reason: Retry_Expired.

Just wondering is it possible to get more detailed and verbose logs from the internal Sdk connection process? The connection type is configured as TransportType.Amqp_WebSocket_Only. When I ping directly iot hub endpoint domain and port address immediate reply is returned, but the connection sometimes is not opened for many hours and retries. Looking forward to getting more verbose logging from the DeviceClient initialization and connection opening process.

Azure IoT SDK
Azure IoT SDK
An Azure software development kit that facilitates building applications that connect to Azure IoT services.
211 questions
{count} votes

1 answer

Sort by: Most helpful
  1. LeelaRajeshSayana-MSFT 13,951 Reputation points
    2023-06-21T21:51:57.7466667+00:00

    Hello @KS Greetings! Welcome to Microsoft Q&A forum. Thank you for posting this question here.

    When you say the issue happens in specific environments, do these environments have a tendency of poor networking conditions? How often do we see this behavior, and can this be replicated on demand?

    You have also mentioned that you were able to ping the IoT Hub endpoint and could get the result immediately. I want to check and make sure if you have tested this from the same network as your device and during the time the device client fails to authenticate.

    I am not sure if it is possible to get more detailed error details aside from Disconnected and reason: Retry_Expired. You can catch the connection change status by adding the following piece of code in your device client application.

                deviceClient1.SetConnectionStatusChangesHandler((status, reason) =>
                {
                    Console.WriteLine($"Connection status changed to {status} with reason {reason}");
    
                    if (reason == ConnectionStatusChangeReason.Retry_Expired)
                    {
                        Console.WriteLine("Connection retry period has expired. Please check your network connection and try again.");
                    }
                    else if (reason == ConnectionStatusChangeReason.Communication_Error)
                    {
                        Console.WriteLine("A communication error has occurred. Please check your connection string and try again.");
                    }
                    // Add more error handling code here...
                });
    
    
    

    When the connection is successful the reason for the handler would be Connection_Ok

    The code base uses an internal Logging class that can be used to capture additional information from this event. Here is an example on how we can leverage this class method to capture additional details.

    public void SetConnectionStatusChangesHandler(ConnectionStatusChangesHandler statusChangesHandler)
    {
    	if (Logging.IsEnabled)
    		Logging.Info(this, statusChangesHandler, nameof(SetConnectionStatusChangesHandler));
    }		
    

    For more details on how to use and leverage this, please refer the InternalClient Class sample. In addition to this, there is another sample code I have found in the repository that lets you provide a customer time span for client to wait before it closes the connection. Please find the MethodSample.cs class for this implementation. Kindly note that this also relies on cancellation token expiry.

    Hope this helps. Please let us know if you have any additional questions.


    If the response helped, please do click Accept Answer and Yes for the answer provided. Doing so would help other community members with similar issue identify the solution. I highly appreciate your contribution to the community.