Is it possible to create a remote WSS connection to LeapMotion?
In my tests, Chrome (59.0.3067.0 Canary) rejects any WSS connection to LeapMotion
except to wss://127.0.0.1
. I have my machine with IP 192.168.15.109
, with LeapMotion attached.
When I execute this code:
var ws = new WebSocket("wss://192.168.15.109:6436/v6.json");
I get this message in Fiddler:
Which is a certificate error. It does not happen executing:
var ws = new WebSocket("wss://127.0.0.1:6436/v6.json");
Because the (self-signed) certificate is issued to the 127.0.0.1
address.
So, are WSS connections from other IPs possible at all?
Thanks.