WebSocket4Net
WebSocket4Net copied to clipboard
A popular .NET WebSocket Client
Hi, I downloaded your examples and running lates stable version of websocket4net. Is there a way I can achieve ServerCertificateValidationCallback to return true able to connect to server accepting wss://...
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...
I want to send some JSON content from a C# client to an ASP.NET Core server. As my message size increased I suddenly noticed that the receiving JSON parser fails...
Some times my server sends compresed messages. how can i get the actual data on messagereceived? not just e.message but i want e.message.data thank you
I was previously able to reproduce this issue, but I have a workaround in my code that makes it less likely to occur. The use case for the exception was...
Let's say I'm accepting packets from multiple machines, each packet should be responded, but the response is a bit slow... say it takes 20 seconds for each packet. Will it...
Hit exception that the remoteEndPoint is null in Connect method in SuperSocket.ClientEngine.Proxy when trigger .Open() method. ``` var proxy = new HttpConnectProxy(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8888)); _socket.Proxy = (SuperSocket.ClientEngine.IProxyConnector)proxy; _socket.Open(); ```
First of all, your library is great! so thank you for making it available. It will be very useful if _WebSocket4Net_ could support [fragmentation](https://tools.ietf.org/html/rfc6455#section-5.4). As far as I am aware,...
When connecting to remote server from phone, sometimes there is problem with connection (switching from mobile data to wifi etc), but I have to wait 1 minute before I get...
Hi, I'm using WebSocket4Net to send JSON-RPC calls to a media server which is event based. After a few minutes connection is lost and the server log indicates that it...