I currently have a TCP server application written in .Net that receives and submits messages to clients. I am looking at building a web application so need the communication layer.
I have built a Node.JS + Socket.IO app which connects to my TCP server and then pushes communication to the web application and all works fine.
I have just read about SignalR as an alternative to keep it in the .Net stack.
However I have also found that I could write a C# Websocket Server, a basic demo here
I assume that this basic server is what SignalR is but obviously with a lot more functionality in it?
What I'm trying to decide is do I just append my current TCP application with a Websocket server or do I go down a separate SignalR or Node.js route? Out of interest how does a SignalR application run, is it as a Windows service, console app or IIS service?
See Question&Answers more detail:os