In last post I explained what SignalR, why do us need it is and what are the prerequisites. In this tutorial we’ll use ASP.NET SignalR to create a real-time chat application. First of all we’ll add SignalR library to an MVC 4 application and then create hub class (to push content to client) and after that we’ll use SignalR jQuery library to send messages and display updates from the hub. · Open Visual Studio -> Select ASP.NET MVC4 Web Application template (under Web Templates) and enter the name of application as “MVCSignalRApp” and then click OK. · On the next screen select “Internet Application” template and then click OK. · Your basic MVC application is ready to use, now we need to add SignalR libraries to this application. To add SignalR libraries open Package Manager Console (TOOLS - >Library Package M...