sockjs-protocol
sockjs-protocol copied to clipboard
An attempt to define SockJS protocol
Changes: 1. The websocket-client library no longer exports ``ConnectionClosedException``. It now exports ``WebSocketConnectionClosedException``. I updated the tests to match. 2. I updated the expected content of the hidden iframe. There...
CORS headers are currently required by the test suite. Why is this required from servers? IMHO hosting the website and the sockjs server under the same origin without CORS headers...
One great thing about websockets is that it supports binary. so do some of the other fallbacks, but not all. What if you allowed binary on those that do, perhaps...
Hello SockJS contributors! It happened that I connected to SockJS (from .NET) and got this: `a["message"]` As stated in the docs (http://sockjs.github.io/sockjs-protocol/sockjs-protocol-0.3.3.html#section-42) it should be an `Array of json-encoded messages`....
A bit of context: We started using a SockJS based protocol in production a couple of weeks ago. After a couple of days of monitoring we noticed some clients exhibiting...
hello it seems wrong to test like this ``` python self.assertTrue('"callback" parameter required' in r.body) ``` the body should content something like this ``` json c["\"callback\" parameter required"] ``` or...
ipv6
Following on from #86, I think that I removed the dependencies on the old websocket-client and ws4py, so that I could run the tests over ipv6 - I was wanting...
I'm the developer of Pushpin, an HTTP/WebSocket proxy server with SockJS support. The way the SockJS feature works is you enable it on one or more URI paths, and Pushpin...
I think it'll be great to treat /xhr_send to closed connection same as if session wouldn't exist and return 404 error code instead of silently ignoring messages. I found bug...
WebsocketHixie76 and WebsocketHybi10 test older versions of the WebSocket protocol. However, the latest Java WebSocket servers (e.g. Jetty 9, Tomcat 8, Glassfish 4) only support the final version of the...