Live data from Hacker News

TIMTOW to build a WebSocket server in Perl

showmetheco.de

1–4 of 4 posts

Re: TIMTOW to build a WebSocket server in Perl

#2
If 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/06/websocket-gets-update-and-i...

Re: TIMTOW to build a WebSocket server in Perl

#3
post #2

If 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 ;)

Re: TIMTOW to build a WebSocket server in Perl

#4
post #3
post #2

If 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 ;)

hehe it is awesome fun. And hopefully most people won't have to delve into the horrible specs :)