Manoj Talreja
Manoj Talreja

Reputation: 853

Aynchronous WebService call

I have ASP.NET website, and it calls the asmx web-service to do some operation asynchronously

_service.Beginxxx(request, null, null);

which will run in separate thread (created by thread pool), what if the user close the browser, is this method still keep running and eventually do what I am expecting or it will abort?

Upvotes: 0

Views: 77

Answers (1)

Steve Elmer
Steve Elmer

Reputation: 939

I would expect it to keep running

Upvotes: 3

Related Questions