I am trying to create a basic application that will have two separate components:
1. Constantly poll the external process and save the results in DB. 2. Grab the results from the database and display them on the web page.
I want to do this in .Net, so usually I say to make the first component in a Windows service, and the second in ASP.net with relational dbms, like a sql server.
The problem is that I want to use web hosting to deploy it, and they are not inclined to allow Windows services (unless you pay a fortune). So is it possible to execute the polling component on a separate asp.net page or to create a spawning workflow on a single asp.net page that will do the polling for me?
Any opinions / input appreciated. Thank:)
source
share