SSL connection Tomcat 8.5
I have installed a certificate issued and signed by a trusted Certification Authority (CA) in my Tomcat 8.5.23 Ubuntu server.
I have followed these steps: https://www.ptc.com/en/support/article?n=CS193947
I can connect to Composer over https and over http it redirects me to https.
When I try the SteamSensorConsole app with this url: wss://aaa.bbb.com:433/Thingworx/WS I get this error:
[Error] Error intializing socket connection. Err = -1 [Error] twWs_Connect: Error restarting socket. Error 0
I have tried these configurations:
config.AllowSelfSignedCertificates = false; config.DisableCertValidation = true;
And these:
config.AllowSelfSignedCertificates = false; config.DisableCertValidation = false;
Both with same results.
Do I have to configure something else? Or I have to change something in Tomcat configuration?

