I'm running an https enabled Node server (v0.10.35) that at present works as expected, i.e. when I browse to the URL I get the index page, which in turn opens a websocket (
socket.io) to the server. I can then send and receive files and messages using this socket.
However, I now want my own software to connect to the server via wss. I have a C++ SSL enabled client that works on wss://
echo.websocket.org, but it does not work on my Node server!
Can someone tell me how I need to configure my server to accepts wss connections from my application please, I am by no means a node expert so if possible detailed instructions would be appreciated.
--
Mook