asp.net - How to handle background queries on a DB that supports a Web App -
I need some help in understanding how I should architecture an application. Basically it has two parts:
-
Web App (ASP MVC): A user logs into the app, records some data and logs off data (login information, by user Recorded data) locally stored on your server. It is very easy.
-
Background Process: I need a service to receive and send data associated with this web app (from # 1). I have a third party server that will send user login information (in real time) to my server, which I will have to use to update my local DB (this is the same DB that web app uses for login information ). Secondly, I need to query user recorded data to run a timed interval process, for that simple logic, and then send results to this third party server. These steps are all through XML Docs.
I am not sure how to attack this problem. I thought I could create a separate web service to do this (it would be a web app on the same server). Or can I run some sort of webburetor () work solution that is linked to my web app or finally I can create an SSIS package to do this. Which route should I go? Thanks for the advice.
Comments
Post a Comment