非同步呼叫Webservice的方法及執行個體代碼如下:
主方法(調用Webservice的方法):
ArrayList al = new ArrayList();
localhost.TestService ts = new TestWebPro.localhost.TestService();//這是Webservice在本地的代理類
System.Threading.ManualResetEvent mre = new System.Threading.ManualResetEvent(false);
al.Add(ts);
al.Add(mre);
//執行非同步呼叫,localhost.TestEnum.bus是自訂的枚舉,用做調用方法的參數
System.IAsyncResult ar = ts.BeginTestMethod(localhost.TestEnum.bus,new System.AsyncCallback(this.EndCall),al);
//.執行其它操作
mre.WaitOne();//等待調用完成
//.繼續執行其它操作
回調方法EndCall(調用完成後執行的方法):
public void EndCall(System.IAsyncResult ar)
{
try
{
ArrayList al = (ArrayList)ar.AsyncState;
localhost.TestService ts = (localhost.TestService)al[0];
System.Threading.ManualResetEvent mre = (System.Threading.ManualResetEvent)al[1];
string s = ts.EndTestMethod(ar);//獲得調用結果
mre.Set();//通知主方法可以繼續執行
}
catch(Exception ex)
{
throw ex;
}
}
如果主方法和回調方法在同一個類就可以把ts和mre聲明成私人全域變數,而不用通過IAsyncResult.AsyncState來傳遞到回呼函數中。