Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can a Socket.IO client connect to SignalR server?

Is it possible for a javascript client to establish a websocket connection using socket.IO to a SignalR .NET web service running on IIS?

like image 824
user3769954 Avatar asked Aug 09 '16 04:08

user3769954


1 Answers

No it is not possible. They are using two different protocols to communicate . Both SignalR and socket.io sdks are a combinatin of server side library and a client side library .

like image 88
CuriousGuy Avatar answered Oct 23 '22 06:10

CuriousGuy