I have a web application that will have backend written asp.net mvc4 and expose to client with rest web-api. What I would like is that ability to feed that application from web service in real time. (Web service returns xml/json format which is not that big object). There are couple of options here : (of course node.js, tornado will be better alternatives here but backend should be on asp.net/iis stack)
- Feeding data object directly from service to middle-tier by binding event, and when event handled persisting data to database. (instead of first persisting then polling)
- Creating SqlDependency object and register event to notify app when there is a update(possibly insert) in specific table.
Probable stack : Asp.net MVC4 + Web API + IIS + Sql Server 2008 + C#