When an ASPX page needs to make a call to a potentially long-running operation (lengthy DB query, call to a remote webservice, etc.), I use RegisterAsyncTask, so the IIS worker thread is returned to the pool, rather than being tied up for the duration of the long-running operation.
However ASMX webservices don't have a RegisterAsyncTask function. When an ASMX webservice needs to call a potentially long-running operation, how can I implement the same behavior as RegisterAsyncTask?
Note: the ASMX webservice is implemented as a script-service: returning json to a direct jQuery/ajax call. Therefore, I cannot use the "BeginXXX" approach described by MSDN, since that implements the asynchronous behavior within the generated client-stub (which isn't used when calling the webservice directly via ajax).
EDIT: Adding source code: implemented the BeginXXX/EndXXX approach listed in John's answer. The synchronous "Parrot" function works fine. But the asynchronous "SlowParrot" function gives an internal server error: "Unknown web method SlowParrot"
WebService1.asmx:
// Test class implemented according to: http://msdn.microsoft.com/en-us/library/aa480516.aspx
[WebService]
[ScriptService]
public class WebService1 : WebService
{
// A normal, synchronous webMethod, to prove the overall webservice is working.
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string Parrot(string key)
{
return key;
}
// Artificially-slow function (uses Thread.Sleep).
public string SleepyParrot(string key)
{
Thread.Sleep(10000);
return key;
}
// Delegate matching our slow-running function.
public delegate string SleepyParrotStub(string key);
// State object to hold the delegate.
public class MyState
{
public SleepyParrotStub Stub;
}
// Asynchronous web method, which should be accessible via: "Webservice1.asmx/SlowParrot".
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public IAsyncResult BeginSlowParrot(string key, AsyncCallback callback, object asyncState)
{
SleepyParrotStub stub = new SleepyParrotStub(SleepyParrot);
MyState ms = new MyState();
ms.Stub = stub;
return stub.BeginInvoke(key, callback, ms);
}
// Asynchronous web method, which should be accessible via: "Webservice1.asmx/SlowParrot".
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string EndSlowParrot(IAsyncResult result)
{
MyState ms = (MyState)result.AsyncState;
return ms.Stub.EndInvoke(result);
}
}
WebForm1.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<script type="text/javascript" src="scripts/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="scripts/json2.js"></script>
<script type="text/javascript">
function showHelloWorld() {
$.ajax({
type: "POST",
url: "WebService1.asmx/Parrot",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: '{"key":"Hello World"}',
success: myCallback,
error: function(response) {
alert(response.statusText);
}
});
}
function showSomethingElse() {
$.ajax({
type: "POST",
url: "WebService1.asmx/SlowParrot",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: '{"key":"something else"}',
success: myCallback,
error: function(response) {
alert(response.statusText);
}
});
}
function myCallback(response) {
$("#myDiv").html(response.d);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="myDiv"></div>
<p><a href="javascript: showHelloWorld();">show hello world</a> | <a href="javascript: showSomethingElse();">show something else</a></p>
</form>
</body>
</html>