PremSahooESL

Results 31 comments of PremSahooESL

What do you mean by transport? Would you please elaborate it more? We are able to send the data from Java Service Client for the same device, but not from...

``` 1. IotHub device is already created. 2. Now we need to send data from C2D (Cloud to Device) for the specific device. 3. So we must use Service client...

From Azure portal we can directly send a C2D message for specific device. And the device receives the data without any issue. But we can not send the same data...

``` var fixedIncomId uint32 = 12345 var nIncomIdPtr *uint32 = &fixedIncomId case *frames.PerformFlow: body.NextIncomingID = nIncomIdPtr if body.NextIncomingID == nil { // This is a protocol error: // "[...] MUST...

in **Azure/go-amqp/session.go** file `body.NextIncomingID == nil` above condition expects some uint32 type NextIncomingID Generally when iotservice sends message, it is always nil, so we were getting the error '**protocol error:...