I have a client on another hosting service who needs a daily processing job run. His hosting service has set up some sort of trigger to call a web page at a specified time each day, but they tell me that I need to set up the page to "call something that will run at [the] server."
I assume I need to kick off some sort of asynchronous job, but how should I do this? I'm using ASP.NET for the entire site (including the billing module, which can be run manually from a web page), and have been experimenting with starting a console job; I get an error that "JIT debugging failed..."
Any ideas? I was thinking of setting up a web service, but have never done this before. What happens if the client signs off before the service completes processing, which is the host's concern? Does that even matter?
I'm delving into new areas for me here and any help would be appreciated.
I assume I need to kick off some sort of asynchronous job, but how should I do this? I'm using ASP.NET for the entire site (including the billing module, which can be run manually from a web page), and have been experimenting with starting a console job; I get an error that "JIT debugging failed..."
Any ideas? I was thinking of setting up a web service, but have never done this before. What happens if the client signs off before the service completes processing, which is the host's concern? Does that even matter?
I'm delving into new areas for me here and any help would be appreciated.