Does anybody have successful experience implementing WSS? The command I'm running on my server is:
sudo python standalone.py -p 443 -t -k certs/server.key -c certs/server.crt -l logs --log-level debug -w WebSocket_Handlers/
1) I've confirmed that the paths are all correct, and the server runs, but I cannot establish a secure connection (it drops any connection attempt: each client runs the OnClose() method immediately). Running the same thing without WSS works successfully (a connection is made and bidirectional communication works between client and server):
sudo python standalone.py -p 80 -w WebSocket_Handlers/
2) I've verified that the key pairs with the certificate correctly by using "openssl x509 -noout -modulus -in server.crt | openssl md5" and "openssl rsa -noout -modulus -in server.key | openssl md5" (Source:
https://kb.wisc.edu/middleware/page.php?id=4064)
3) I'm not behind any corporate firewalls that would cause any lack of transparency.
4) I'm going to get and post a WireShark capture tonight to give you guys more of an idea of what exactly is happening, I'm just posting this now to see if there are any ideas floating in your minds before I get the capture, as I'm stumped.
Thanks!