3

現在、IoT スクール プロジェクト用の単純な Web アプリケーションを開発しようとしています。今のところ、ラズベリーからの直接メソッドのみを呼び出す必要があります。Azure SDK for C# を使用しています。

コードは次のようになります。

コントローラ:

    public ActionResult changeState(int? id, bool enable)
    {
        string conn_str = (from u in db.Users join h in db.Hubs on
                u.Hub.HubId equals h.HubId
                where u.UserName == User.Identity.Name select h.connection_str).First();

        Cloud2Device c2d = new Cloud2Device(conn_str);

        if (id == null)
        {
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        }
        Rp rp = db.Rps.SingleOrDefault(r => r.RpId == id);
        if (rp == null)
        {
            return HttpNotFound();
        }
        //IoT stuff
        try
        {
           c2d.EnableRaspberry("myDeviceId").Wait();
        }
        catch(Exception ex)
        {
           //do something
        }
        rp.is_enabled = enable;
        db.SaveChanges();
        return RedirectToAction("Index");
    }

IoT ユーティリティ:

public class Cloud2Device
{
    private ServiceClient s_serviceClient;

    public Cloud2Device(string conn_str)
    {
        s_serviceClient = ServiceClient.CreateFromConnectionString(conn_str);
    }

    public async Task EnableRaspberry(string deviceId)
    {
        var methodInvocation = new CloudToDeviceMethod("EnableRaspberry") { ResponseTimeout = TimeSpan.FromSeconds(2) };

         var response = await s_serviceClient.InvokeDeviceMethodAsync(deviceId, methodInvocation);
        Debug.WriteLine(response.GetPayloadAsJson());
    }
}

問題は、デバッグ出力から、例外 Microsoft.Azure.Devices.Common.Exceptions.DeviceNotFoundException がスローされたことがわかりますが、try-catch ブロックによって処理されないことです。

コンソール出力

    Application Insights Telemetry (unconfigured): "name":"Microsoft.ApplicationInsights.Dev.RemoteDependency","time":"2018-05-29T12:04:59.4748528Z","tags":{"ai.internal.sdkVersion":"rddf:2.2.0-738","ai.internal.nodeName":"5CG6455YJ4.ericsson.se","ai.cloud.roleInstance":"5CG6455YJ4.ericsson.se"},"data":{"baseType":"RemoteDependencyData","baseData":{"ver":2,"name":"/twins/myDeviceId/methods","id":"8/ZMgqG4iNc=","data":"https://utiliothub.azure-devices.net/twins/myDeviceId/methods?api-version=2017-10-15","duration":"00:00:01.2380000","resultCode":"404","success":false,"type":"Http","target":"utiliothub.azure-devices.net","properties":{"DeveloperMode":"true"}}}}
    Exception thrown:'Microsoft.Azure.Devices.Common.Exceptions.DeviceNotFoundException' in Microsoft.Azure.Devices.dll
    Exception thrown:'Microsoft.Azure.Devices.Common.Exceptions.DeviceNotFoundException' in mscorlib.dll
    The thread 0x3834 has exited with code 0 (0x0).

アプリケーションでこの例外をキャッチして処理する方法を教えてもらえますか? 回答ありがとうございます。

4

1 に答える 1