I am working on an MVC 3 web applicaton (.NET Framework 4, IIS7) that acts as a front end for a custom ID card printer built on some legacy technology. Without going too far in to the details, when clicking "Print" the web app writes a row with the card info to the database and returns. Then a service on the back end picks up the row and handles the actual printing of the card. Once the back end service is finished, it updates the row with a status column indicating success or failure.
Right now the application POSTs the data (via jquery ajax) and once the row is written to the database the controller returns success which is displayed to the user. Because of the setup I've described, this may or may not actually reflect reality because the service or card printer may have a problem.
We have a new requirement to make the UI "wait" to update with or success or failure based on the update to the row from the service. It is already setup in an asynchronous way on the client side via the jquery ajax call, and I'm not worried about handling it on the front end. I've looked at SignalR and the like, and have this part of it covered.
What I am looking for is information (links & articles, not a solution) on how to deal with it correctly on the web server side. I do not want to block incoming requests to print while polling the database periodically from earlier requests. From a high level, I want to know what the best way is to set up the controller and necessary background process that will:
- Accept the request and write the row to the database
- set up a background polling process, then return control to ASP.net
- poll the database ever so often until the row is updated (or a timeout is reached)
- return an answer to the client
I am no expert on threading, but know enough to know that I'm in dangerous territory if this is done incorrectly. Any help is greatly appreciated.