B
BK
Can someone point me to a code sample that illustrates executing long
running tasks (asynchronous) from a web application in ASP.NET? I assume
that Web Services might come into play at some point, but I'm not sure how
to get started.
For example, I have an application that, upon a user initiating through a
button or link click, will go out and generate a bunch of files (this could
take several minutes). This will happen in batches, so I would like to have
the web application kick off the generation of all the jobs and then receive
a notification as each job finishes, at which point I could update the page.
But, obviously, I don't want the web application itself tied up during all
this processing. What is the best way to architect this in .NET? Hopefully
someone has done this before and can point me to some starter code
samples...
Thanks,
BK
running tasks (asynchronous) from a web application in ASP.NET? I assume
that Web Services might come into play at some point, but I'm not sure how
to get started.
For example, I have an application that, upon a user initiating through a
button or link click, will go out and generate a bunch of files (this could
take several minutes). This will happen in batches, so I would like to have
the web application kick off the generation of all the jobs and then receive
a notification as each job finishes, at which point I could update the page.
But, obviously, I don't want the web application itself tied up during all
this processing. What is the best way to architect this in .NET? Hopefully
someone has done this before and can point me to some starter code
samples...
Thanks,
BK