Hi, I invoke a server side method (by jQuery's $.ajax) which invokes an asynchronous WebService long-running method. The problem is, that while that long-running method is not complete, I can't get the progress of that method for my progress bar. Why server waits until the method completes ?
[Solved] !
ThreadPool.QueueUserWorkItem(state => service.MyMethod());
that code makes that my webserver doesn't wait for method complete, the progress bar is being updated. Only 1 code line.....