0

Is anyone aware of whether this is possible?

I want to call a webservice asynchronously (fire and forget) from classic ASP?

Ryan Tomlinson
  • 874
  • 2
  • 9
  • 21

1 Answers1

0

Its a little different, but I recently had another system that had to call a process that was very lengthy, I didn't want the asp page to timeout or error during the process.

I'd developed the process as a vbs file for this reason, and originally had it running on a schedule. I created an asp page to fire it using the shell object in classic asp. I was therefore able to initiate the .vbs script, and carry on with the asp page, on the assumption that the vbs did its stuff. I could have (but didn't) got it to update a record in the db at the end so that asp would know it had completed. Perhaps a similar approach might enable you do to the same fire and forget?