[twsocket] WebSockets server

2011-12-11 Thread Stan
Hi everybody, Does probably someone have a WebSockets server implemenation for ICS? Thanks in advance. Stan -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] WebSockets server

2011-12-11 Thread Pierre Y.
There is something based on raw Windows Sockets here : http://code.google.com/p/delphionrails Websockets are based on HTTP, using the "upgrade" header to convert to the http connection to a websocket one. Can't evaluate how hard it will be to port the code to ICS. Regards, -- Pierre On Sun, De

Re: [twsocket] WebSockets server

2011-12-11 Thread Stan
Hi Pierre, I know what are Web Sockets. To my understanding, the server support could be made on top of ICS's HTTPserver, by forcing an unlimited keep-alive connection if websockets handshake is succeeded, and disabling any standard http-related events processing in this mode. There is a lot of s