一个简单的webservice的demo(下)winform异步调用webservice

时间:2021-04-12 14:39:38

  绕了一大圈,又开始接触winform的项目来了,虽然很小吧。写一个winform的异步调用webservice的demo,还是简单的。

  一个简单的Webservice的demo,简单模拟服务

  一个简单的Webservice的demo(中)_前端页面调用

  当winform同步调用服务时,由于调用服务不能像C/S那样快,winform的UI进程一直在等待服务的返回结果,就无法响应用户事件。为了解决这种问题,我们用异步调用。

  首先,先准备一个模拟用的webservice,如下:

  

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Services; namespace WFasy
{
/// <summary>
/// AsyWeb 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。
// [System.Web.Script.Services.ScriptService]
public class AsyWeb : System.Web.Services.WebService
{ [WebMethod(Description="模拟服务等待,返回输入字符的前三位")]
public string AsynchronousCall(string code)
{
// 线程sleep5秒,模拟服务请求等待。
Thread.Sleep();
if (code.Length >= )
return code.Substring(, );
return "***";
}
}
}

  现在写winform客户端,引用服务:

  一个简单的webservice的demo(下)winform异步调用webservice

  点击高级,选择生成异步操作(应注意)

  一个简单的webservice的demo(下)winform异步调用webservice

  客户端代码:

  

 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms; namespace WFAsyC
{
public partial class form : Form
{
public form()
{
InitializeComponent();
} private void btnSure_Click(object sender, EventArgs e)
{
string inString = txtIn.Text;
string outString = txtOut.Text; WS.AsyWebSoapClient ws = new WS.AsyWebSoapClient(); // 在调用服务前,应注册调用完成事件,即“回调方法”
// 一定要在异步调用前注册
ws.AsynchronousCallCompleted += ws_AsynchronousCallCompleted; // 我们之前用这个方法调用服务
// ws.AsynchronousCall(txtIn.Text);
// 异步调用时用Asyn
ws.AsynchronousCallAsync(txtIn.Text);
} /// <summary>
/// 调用成功后触发此事件
/// </summary>
/// <param name="sender">object</param>
/// <param name="e">EventArgs</param>
void ws_AsynchronousCallCompleted(object sender, WS.AsynchronousCallCompletedEventArgs e)
{
if (e.Error == null)
{
// 若调用服务没有异常
txtOut.Text = e.Result;
}
else
{
txtOut.Text = "服务端出现异常!";
}
}
}
}

  最近很忙了,以后坚持写博客,写下一些最简单的demo,记录自己成长过程。这里暂且为下篇了,未来慢慢添加一系列webservice的后续篇章。