sta / websocket-sharp

A C# implementation of the WebSocket protocol client and server
http://sta.github.io/websocket-sharp
MIT License
5.69k stars 1.66k forks source link

Does websoket-Sharp support other Wesocket Drafts besides RFC 6455? #62

Closed pyrocro closed 10 years ago

pyrocro commented 10 years ago

I have a google Playn game client the seems to only support Hybi-14 DRAFT. I originally implemented websocket-sharp as my server implementation only to find out it was not letting the client connect. I then switch to Alchemy which has a crippling corruption bug and finally I did a Fleck implementation of the server which works. But I like how this frameworks is setup and would prefer to use it. So is there a way to get a client other then RFC 6455 working with websocket-sharp or are their any plans to add support for any of the many other drafts of websockets.

sta commented 10 years ago

I don't plan to support draft specs, sorry.

I hope you find a good workaround.

pyrocro commented 10 years ago

Thank you for the reply, Just wanted to know for sure. Very nice work on the framework.

My workaround will most likely be multiple client implementation for the different PlayN clients, as using the default implementation for GWT/HTML client is the only one that works because of lack of compatibility with GWT by other java websocket client frameworks and since it's the browser the client is running on for the GWT/HTML client it should use the most recent implementation(6455) the browser has to offer.

I can use another implementation for the android and java clients which will use the final spec(6455). Thanks again for the reply.