我正在尝试开发一个客户端程序,通过azure创建设备标识。即时通讯使用azure rest创建它所以我从客户端程序使用jersey实现调用此web服务但我收到错误 com.sun.jersey.api.client.ClientHandlerException:java.net.SocketException:Socket未连接:connect 我使用postman测试它工作和它工作的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();
}
}
}
由于
答案 0 :(得分: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
。