TIMTOW to build a WebSocket server in Perl
showmetheco.de
TIMTOW to build a WebSocket server in Perl
1–4 of 4 posts
Re: TIMTOW to build a WebSocket server in Perl
#2Websocket is a fantastic advance for the web. But the protocol, in particular the handshake is truly awful.
It's awful in that it defines silly useless hoops you have to jump through, and it's awful because in the real world, it sometimes breaks with http proxies etc.
My post about the new version: http://axod.blogspot.com/2010/06/websocket-gets-update-and-i...
Re: TIMTOW to build a WebSocket server in Perl
#3If you have to go lower level and implement the server protocol, my heart goes out to you. Websocket is a fantastic advance for the web. But the protocol, in particular the handshake is truly awful. It's awful in that it defines silly useless hoops you have to jump through, and it's awful because in the real world, it sometimes breaks with http proxies etc. My post about the new version: http://axod.blogspot.com/2010…
Re: TIMTOW to build a WebSocket server in Perl
#4If you have to go lower level and implement the server protocol, my heart goes out to you. Websocket is a fantastic advance for the web. But the protocol, in particular the handshake is truly awful. It's awful in that it defines silly useless hoops you have to jump through, and it's awful because in the real world, it sometimes breaks with http proxies etc. My post about the new version: http://axod.blogspot.com/2010…
Well, I agree with everything you say. But I just wanted to play with it, just for fun, you know ;)