0

我正在尝试开发一个客户端程序,该程序通过 azure 创建设备标识。我使用 azure rest 来创建它,所以我使用 jersey 实现从客户端程序调用这个 web 服务,但我得到错误com.sun.jersey.api.client.ClientHandlerException: java.net.SocketException: Socket is not connected: connect 我使用测试它邮递员可以工作,而python可以工作。这是我的java代码:

public class Test {

    public static void main(String[] args) {

        try {

            Client client = Client.create();

            WebResource webResource = client
                    .resource("https://xxxx-iot-hub.azure-devices.net/devices");

            ClientResponse response =     webResource.path("/iotdevice1").queryParam("top", "100").queryParam("api-version", "2016-02-03").header("Content-Type", "application/json")
                    .header("Authorization", "SharedAccessSignature sr=xxxxx-iot-hub.azure-devices.net&sig=Yxxxxxxxxxx=1497357420&skn=iothubowner")
                    .put(ClientResponse.class);



            String output = response.getEntity(String.class);

            System.out.println("Output from Server .... \n");
            System.out.println(output);

        } catch (Exception e) {

            e.printStackTrace();

        }
    }

}

谢谢

4

1 回答 1

0

根据您的代码,您似乎想使用带有 HTTP PUT 方法的REST API创建一个新的设备标识。

但是,在您的代码中,查询参数top=100不是必需的,并且{deviceId: "iotdevice1"}缺少请求正文。

这是我的工作代码。

String body = "{deviceId: \"iotdevices1\"}";
ClientResponse response = webResource.path("/iotdevices1").queryParam("api-version", "2016-02-03")
                    .header("Content-Type", "application/json")
                    .header("Authorization",
                            "SharedAccessSignature sr=xxxx.azure-devices.net&sig=xxxxxxxx&se=1497357420&skn=iothubowner")
                    .put(ClientResponse.class, body);

希望能帮助到你。任何问题,请随时告诉我。


更新

要删除现有设备身份,请参阅REST API参考并查看以下代码。

ClientResponse response = webResource.path("/iotdevices1").queryParam("api-version", "2016-02-03")
                    .header("Content-Type", "application/json")
                    .header("If-Match", "*")
                    .header("Authorization",
                            "SharedAccessSignature sr=xxxx.azure-devices.net&sig=xxxxxx&se=1497490976&skn=iothubowner")
                    .delete(ClientResponse.class);

请注意If-Match上面的标题。

于 2016-06-14T06:16:11.687 回答