Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hard coded to not use websocket
  • Loading branch information
xiazhvera committed Jun 16, 2025
commit 44ec7e6adb8fc17b48f9fd7f3b1b31bc86eb2cf2
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class AWSIotMqttClientIntegrationUtil {
private static final String CLIENT_ENDPOINT = "a16523t7iy5uyg-ats.iot.us-east-1.amazonaws.com";
private static final String CLIENT_ID = UUID.randomUUID().toString();

private static final String AUTH_MODE = System.getProperty("authMode");
private static final String AUTH_MODE = "CertificateMutualAuthentication";

private static final Boolean IS_WEBSOCKET = Boolean.parseBoolean(System.getProperty("isWebSocket"));
private static final Boolean IS_WEBSOCKET = false;
private static final String PUBLIC_MATERIAL = "arn:aws:secretsmanager:us-east-1:123124136734:secret:unit-test/certificate-iZBV7L";
private static final String PRIVATE_MATERIAL = "arn:aws:secretsmanager:us-east-1:123124136734:secret:unit-test/privatekey-p8-d3pMKx";
private static final String KEYSTORE_FILE = System.getProperty("keystoreFile");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
clientEndpoint=ajje7lpljulm4-ats.iot.us-east-1.amazonaws.com
clientId=DefaultClientId
thingName=DefaultThingName
privateMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestWebsocketSecretAccessKey-MKTSaV
publicMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestWebsocketAccessKeyId-1YdB9z
privateMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestPrivateKey-vNUQU8
publicMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestCertificate-vTRwjE
isWebSocket=false
authMode=CertificateMutualAuthentication
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
clientEndpoint=ajje7lpljulm4-ats.iot.us-east-1.amazonaws.com
clientId=DefaultClientId
thingName=DefaultThingName
privateMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestPrivateKey-vNUQU8
publicMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestCertificate-vTRwjE
privateMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestWebsocketSecretAccessKey-MKTSaV
publicMaterial=arn:aws:secretsmanager:us-east-1:123124136734:secret:V1IotSdkIntegrationTestWebsocketAccessKeyId-1YdB9z
isWebSocket=true
authMode=MqttOverWebSocketSigV4Signing
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<version>0.0.1-dev</version>
<packaging>pom</packaging>
<name>AWS IoT Device SDK for Java</name>
<description>The AWS IoT Device SDK for Java provides Java APIs for devices to connect to AWS IoT service using the MQTT protocol. The SDK also provides support for AWS IoT specific features, such as Thing Shadow and Thing Shadow abstraction.</description>
<description>The SDK is in maintenance mode, and no longer receive feature updates. Checkout aws-iot-device-sdk for new features. The AWS IoT Device SDK for Java provides Java APIs for devices to connect to AWS IoT service using the MQTT protocol. The SDK also provides support for AWS IoT specific features, such as Thing Shadow and Thing Shadow abstraction.</description>
<url>https://aws.amazon.com/iot/sdk</url>
<licenses>
<license>
Expand Down