WebSockets Tutorial on ASP.NET

Is there a simple, down to earth, sample/example/tutorial for WebSockets Server and Client implementation in ASP.NET 4.0 to get me started? I know this question has been asked, but it hasn’t been answered properly. There is a lot of stuff about client side, but cannot find a simple explanation about server-side in ASP.NET Thanks! ~Update: … Read more

How to keep track of established connections using WebSockets

I am trying to get a real-time chat service for cross-platform devices to life. The problem is that
System.Net.WebSockets namespace doesn’t allow me directly to keep track of an established connection. I could take a sessionID of the current connection but how can I say perform the following action await socket.SendAsync(buffer, WebSocketMessageType.Text, CancellationToken.None) for a specific client?