非同步呼叫Webservice

來源:互聯網
上載者:User

非同步呼叫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來傳遞到回呼函數中。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.