Chris
unread,Oct 11, 2011, 2:34:17 PM10/11/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Tornado Web Server
Hello Everybody,
I apologize for my ignorant question, but I am having a lot of trouble
with this.
I am working on building a WebSocket server. It is currently
implemented as a fairly standard inheritance from WebSocketHandler. It
works well, and handles the connection perfectly. However, when I
attempt to connect using wss (secure websockets), it doesn't function
properly. The server shows no reaction, with none of the "open" or
"on_close" or "on_error" methods being called on the handler. The
client never registers as having an open connection (never runs the
"on_open" method in javascript), but does run the "on_close" method if
the server if halted during this process.
What am I missing? I have tried, without success, to find some
documentation of Secure Websockets with Tornado. It seems to me that
the server is receiving the connection, but does nothing without
(including not rejecting or closing it).
Can anyone help me with this issue?
Thank you very much for your time,
---Chris