0
AWS IoTに問題があります。私は月に同じコードを使用していました。しかし、突然それは動作を停止しました。私はWebSocket上でAWS IoTでMqttを使用しています。AWS IoTを使用したWebSocket経由のMQTTによる接続ヘッダーが正しくありません
これは私が使用する簡単なコードです。
import com.amazonaws.services.iot.client.AWSIotException;
import com.amazonaws.services.iot.client.AWSIotMqttClient;
public class ThingMain {
public static void main(String[] args) {
String clientEndpoint = "endpoint.iot.us-west-2.amazonaws.com";
String clientId = "testing";
AWSIotMqttClient client = new AWSIotMqttClient(clientEndpoint, clientId, "accessKey", "secretKey");
try {
client.connect();
} catch (AWSIotException e) {
e.printStackTrace();
}
}
}
そして、私はこのログました:
AVERTISSEMENT: Connect request failure
MqttException (0) - java.io.IOException: WebSocket Response header: Incorrect connection header
at org.eclipse.paho.client.mqttv3.internal.ExceptionHelper.createMqttException(ExceptionHelper.java:38)
at org.eclipse.paho.client.mqttv3.internal.ClientComms$ConnectBG.run(ClientComms.java:690)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.io.IOException: WebSocket Response header: Incorrect connection header
at org.eclipse.paho.client.mqttv3.internal.websocket.WebSocketHandshake.receiveHandshakeResponse(WebSocketHandshake.java:144)
at org.eclipse.paho.client.mqttv3.internal.websocket.WebSocketHandshake.execute(WebSocketHandshake.java:74)
at org.eclipse.paho.client.mqttv3.internal.websocket.WebSocketSecureNetworkModule.start(WebSocketSecureNetworkModule.java:77)
at org.eclipse.paho.client.mqttv3.internal.ClientComms$ConnectBG.run(ClientComms.java:676)
... 1 more
avr. 04, 2017 11:00:55 PM
com.amazonaws.services.iot.client.core.AwsIotConnection onConnectionFailure
INFOS: Connection temporarily lost
avr. 04, 2017 11:00:55 PM
com.amazonaws.services.iot.client.core.AbstractAwsIotClient onConnectionFailure
INFOS: Client connection lost: leet
avr. 04, 2017 11:00:58 PM
com.amazonaws.services.iot.client.core.AwsIotConnection$1 run
INFOS: Connection is being retried
この段階では私が間違っているものを見当もつかない。私はこのコードを月に使用していました。何も変わっておらず、今は機能しなくなった。
誰かが私がこれを整理する手助けができれば、それはすばらしいでしょう。ありがとう。
感謝をorg.eclipse.pahoする原因である可能性があります。私はこの行を私の依存性 '' 'compile(グループ: 'org.eclipse.paho'、名前: 'org.eclipse.paho.client.mqttv3'、バージョン: '1.1.0')に追加しました{force = true} "" – Sapher