Unless i'm interpreting the example wrong, I have:
"void Start () {
MyClient = new Client("http://95.232.201.42:35352"); //Custom Port
MyClient.Message += SocketMessage;
MyClient.Opened += SocketOpened;
MyClient.SocketConnectionClosed += SocketConnectionClosed;
MyClient.Error += SocketError;
"
The socket server doesn't detect the connection, and I know it works because I've had it work with other utilities.
Either i'm not giving the correct URi/URL or this is too outdated.