Is there a c# client that follows the socket.io protocol? I have a socket.io server that is communicating with a socket.io javascript client via a website, but i also need to connect a c# piece to it that can send and receive messages. Is there a clean way to do this currently or will I have to write my own client.

link|improve this question

69% accept rate
possible duplicate of Is there a WebSocket client implemented for .NET? – jgauffin Jun 28 '11 at 7:27
3  
@jgauffin, not really, as socket.io mixes in it's own secret sauce too. – Nullable Jun 28 '11 at 22:36
Seems that at least some part of socket.io.js would have to be re-written in .NET for this to work. I tried fiddling with WebSocket4Net as a starting point, but it seems that there is still a ways to go. – tofutim Jan 24 at 7:57
1  
Incomplete implementation abandoned Feb 2011: github.com/jouz/socket.io-unity-client – tofutim Jan 24 at 8:43
1  
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

There is a project on codeplex ( NuGet as well ) that is a C# client for socket.io. (I am the author of this project - so I'm biased) I couldn't find exactly what I needed in a client, so I built it and released it back into the open.

Example client style:

socket.On("news", (data) =>    {
Console.WriteLine(data);
});
link|improve this answer
I can't wait to give it a try. Thanks – Dested May 9 at 7:23
feedback

This depends on how your webserver looks. In some cases it might be applicable to make a listener for regular sockets too.
Otherwise, you will probably have to make your own client. However, you will probably only need to implement the WebSocket transport so it should be fairly straightforward anyway.

For what it's worth I'd suggest looking at the question "Is there a WebSocket client implemented for .NET?" and my (fairly simple) WebSocket Socket.IO transport client implementation for Java.

link|improve this answer
Ideally im looking for a wrapper of the socket.io client written in c#. I can write a socket webserver, the problem is the socket.io protocol. – Dested Jun 28 '11 at 3:31
@Dested, Then I would suggest taking a look at the links I provided. – Nullable Jun 28 '11 at 22:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.