My ASP.NET MVC 4 Web application is displaying frequently updated data to the client.
Data originate from an external source (an application installed on the server) and pro
Have you looked at SignalR? You can use it to asynchronously push data to your UI (although it isn't a true push). This may not be acceptable for your specific situation, but I would suggest taking a look. Might be what you need. Hope that helps.