-
I'm trying to do some tests on an iPad and my game seems to be having trouble to connect to the network. Using Firebug Lite I can see that the engine starts up fine, but it hangs on:
```
Net.io *log*…
-
On line 209 in HttpRequestMessage.scala:
Instead:
(upgrade != null && upgrade == "websocket")
Do:
(upgrade != null && upgrade.equalsIgnoreCase("websocket"))
-
I implemented my WebSocket Server with Tomcat. Everything in Chrome and Firefox works fine but the Flash-Fallback doesnt work.
After a short look to the debug log i found a few differences between the…
-
Specifically I'm working on an `haproxy` setup but the handshake isn't working right. Not sure if its txWS's "fault" or my lack of experience with haproxy.
One thought is that only the "Host" is use…
-
Hi. Maybe I'm missing something, but I don't see hybi-17 (same as RFC 6455?) support in the latest code, though the Alchemy home page says it's supported.
For instance, there's no hybi17 Protocol (in…
-
The implementation of WebSockets in Qt (used by capybara-webkit seems to be buggy). It still uses an old draft
of the WebSocket implementation that seems to be completely broken.
## Reproducing the bu…
iblue updated
12 years ago
-
Just noticed this during testing. Currently using version 0.3.1 from npm.
Using the sockjs client fires the event as expected. When connected over ws://hostname/prefix/websocket and the client drops,…
-
See: http://dev.w3.org/html5/websockets/#the-websocket-interface
Problem is that you will need to parse handshake reply from server. I think implementing handshake parser for current supported versi…
-
I use the AHC with new Tomcat 7.0.27 WebSocket support. I detect a version conflict.
AHC support only websocket protocol version "8" and Tomcat only support version *13" (RFC 6455)!
The websocket p…
-
Tornado 2.2 changed their WebSocketHandler implementation so that it implements RFC 6455 [0] as the default, and only, implementation.
However, the latest Safari 5.1 still only supports draft 76 and …