WebSocket4Net icon indicating copy to clipboard operation
WebSocket4Net copied to clipboard

A popular .NET WebSocket Client

Results 113 WebSocket4Net issues
Sort by recently updated
recently updated
newest added

Environment: Dot net core application running in a docker container. Issue 1. Web socket connection is broken 2. Try to reset the socket by following https://github.com/kerryjiang/WebSocket4Net/issues/100 3. Get SocketException from...

In my .NET Core Console Application WebSocket4Net works without a Problem. I tried it then in my UWP App and it didnt work. After that, i cloned your UWP sample...

'System.Exception' occurred in SuperSocket.ClientEngine.dll Additional information: The socket is connected, you needn't connect again! occurred ========================================================= Hi Kerry, In an error handling case, our design of the handler of websocket...

Hi Jerry, Is there any way that the client can connect to Spring WebSocket server? When I tried with a client instantiated through WebSocket(host, subprotocol, version) { I tried both...

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using WebSocket4Net; namespace WindowsFormsApp1 { public partial class Form1 : Form {...

Could you please help me with this implementation of WebSocket4Net. ``` myWebsocket = New WebSocket4Net.WebSocket("wss://lorem.ipsum.com:8734/someServer") AddHandler myWebsocket.Opened, AddressOf Me.websocket_Opened AddHandler myWebsocket.Error, AddressOf Me.websocket_Error AddHandler myWebsocket.Closed, AddressOf Me.websocket_Closed AddHandler myWebsocket.MessageReceived, AddressOf...

Websocket can hang if used with some proxies. After calling `WebSocket.Open` no events (`OnWsClosed, OnWsOpened, OnWsError`) are raised and some internal thread starts to generate high CPU usage. More info:...

bug

Hello, I don't think this is an issue but, is it possible to use SOCKS5 proxies with WebSocket4Net? All I can find is HttpConnectionProxy but it doesn't handle socks5. Thanks...

When trying to re-open a websocket closed by the server I am getting SocketException "Operation not supported". at System.Net.Sockets.Socket.SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, Int32 optionValue) at System.Net.Sockets.Socket.set_ExclusiveAddressUse(Boolean value) at SuperSocket.ClientEngine.ConnectAsyncExtension.ConnectAsync(EndPoint remoteEndPoint,...

Hello Kerry! I have pcl xamarin project! When i build uwp project will run with this errors: > 1.Some packages are not compatible with UAP,Version=v10.0 (win10-x86). > 2.System.Net.Security 4.0.0 provides...