I am trying to create a WebSocket client using WebSocket4Net with port 4503. However, I could only see the status of WebSocket as โConnectionโ since it does not raise any exceptions and does not go further. I was able to throw an Exception OnError event, which says that "An attempt was made to access a socket that is denied access permissions"
Am I missing something? Any suggestions or links would be very helpful. Thanks in advance.
ws = new WebSocket("ws://localhost:4503/WSServer"); ws.Opened += new EventHandler<EventArgs>(ws_Opened); ws.Open();
source share