I can abort the web service call from client by calling ABORT method of web service proxy.
However at server where web service is hosted, the call only ends when it completes the processing. As server doesn’t expect any other inputs related to already called web method while processing it, I am not able to close it from client.
Is there any way I can also abort the call at server i.e. stop the large calculation (and pulling some data from database server also) which server is working on?