hi,
I have an asp.net web application where one operation is report generation. It will take a long time to generate the report. So the logic is like when the user clicks on report generation button, it will start a windows service (Created a windows service to handle the report generation process). So this will allow the user to log out from the site and he can check the status of report later.
My doubt is that once I host the site, multiple users can log in to the site and they will have separate report while clicking the report generate button; but will that create separate instance of windows service on each button click? I didn’t get any clear idea how to deal this particular case. Please let me know what the efficient way to handle the situation is.
Thanks.