I have a .NET 2.0 Smart client and with web service back end that I am working with. Currently, there are a few asynchronous web service calls made by the client which can take up to 30 or so seconds to complete. The web service calls do not return any data (we are actually pushing data up to our central SQL server). Right now, everything works fine, but I am figuring out all of the edge cases and wondering what happens with the web service if the client application is closed between call and completion. Has anyone had this situation before, and if so, what is the proper way to handle it?
Thanks!
Unless you have code checking for:
Then it’ll continue to execute.