10

Is there a c# client that follows the socket.io protocol? I have an NodeJS application that runs a socket-io server and I need a client in another application in .Net Core that needs to communicate with the socket-io server.

These are some implementations that I've found:

SocketIoClientDotNet - Deprecated

socketio4net - Deprecated

IBM.Socket-IO - Doesn't Work in .NET Core

Is there anything more recent that is being maintained that can accomplish this task?

Ribeiro
  • 364
  • 1
  • 3
  • 12

1 Answers1

0

Update 23/7

You can find all you needs from here Communicating with a socket.io server via c#


I think you might need this socket.io implementation in asp.net core

https://github.com/Beffyman/SocketIo.Core

Michael Wang
  • 3,782
  • 1
  • 5
  • 15
  • Which one did you ended up using? – Ribeiro Jul 24 '20 at 08:09
  • 1
    I tested Websocket both server on node.js and client on .net. It works on me. You could check here : https://stackoverflow.com/questions/63035593/clientwebsocket-socketexception-no-connection-could-be-made/63049364#63049364. Sorry for no implementation of Socket.io. – Michael Wang Jul 24 '20 at 08:13
  • You linked to an answer that is nearly 10 years old. – pookie Feb 27 '21 at 19:43