You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
If your server is using SSL, but the URL has a different port than the default (443) when you attempt to join the study the UI will hang at the message "Loading study".
For example, connecting to a study at: https://aware.test.com/index.php/1/TEST works fine
Connecting to a study at: https://aware.test.com:4433/index.php/1/TEST will fail.
SSLManager.java reconstructs URLs for downloading the SSL cert:
If your server is using SSL, but the URL has a different port than the default (443) when you attempt to join the study the UI will hang at the message "Loading study".
For example, connecting to a study at:
https://aware.test.com/index.php/1/TEST
works fineConnecting to a study at:
https://aware.test.com:4433/index.php/1/TEST
will fail.SSLManager.java reconstructs URLs for downloading the SSL cert:
aware-client/aware-core/src/main/java/com/aware/utils/SSLManager.java
Line 219 in 7d1f276
However, this does not incorporate the port. We can use the URL class constructor to flexibly consider the port, if it is provided.
The text was updated successfully, but these errors were encountered: