PremSahooESL
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...
does not it support **'amqps'** protocol instead of http?
``` 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...
If IoTHub Device wants to send message (D2C), then it must use Device Client. Our case is just opposite of it.
Could you please provide working sample code of Service Client sender, if you have any?
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...
is there any thing wrong with the amqp protcol version?
``` 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:...