WebSocket4Net icon indicating copy to clipboard operation
WebSocket4Net copied to clipboard

talking to sockjs server

Open goofiesnacks opened this issue 8 years ago • 0 comments

is it possible to use websocket4net to communicate with a sockjs server which supports version 0.3.3 of the sockjs protocol?

I try to initalize this client like this

WebSocket websocketClient = new WebSocket("ws://localhost:7000/sockjsserver/websocket", "", WebSocketVersion.Rfc6455);

and I see that the connection is established successfully because the Opened event gets raised. But whenever I try to send some data from the sockjs server websocket, the client does not receive anything

goofiesnacks avatar Dec 24 '16 17:12 goofiesnacks