加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

WinForm中动态调用WebService

发布时间:2020-12-17 02:10:25 所属栏目:安全 来源:网络整理
导读:7.7? WinForm如何调用Web Service 本节介绍WinForm如何调用Web Service。 7.7.1? .NET的WinForm调用Web Service 在.NET的WinForm中调用Web Service的操作基本上和在ASP.NET中调用Web Service是一样 首先在项目上单击鼠标右键,在弹出的快捷菜单中选择“添加W

7.7? WinForm如何调用Web Service

本节介绍WinForm如何调用Web Service。

7.7.1? .NET的WinForm调用Web Service

在.NET的WinForm中调用Web Service的操作基本上和在ASP.NET中调用Web Service是一样

首先在项目上单击鼠标右键,在弹出的快捷菜单中选择“添加Web引用”命令,如图7-11所示。

添加完引用后,项目中也会创建一个名叫Web References的目录,即引用代理类,如图7-12所示。

未标题-2.jpg

??????? ???????

003.jpg

?????

图7-11? 添加Web引用???????????????? 图7-12? Web引用代理类

代码中使用这个代理类进行调用。

ProductService.LTPService service = new ProductService.LTPService();

string price=service.GetProductPrice("001");

MessageBox.Show(price);

微软的统一编程模型,真是让我们感觉开发变得简单多了。

7.7.2? 手动发送HTTP请求调用Web Service

但如果调用Web Service的不是在.NET中,无法直接添加引用怎么办呢?下面就看两个不是直接通过代理类实现对Web Service的调用。(完整代码示例位置:光盘/code/ch07/WinFormsAppClient)

方式一:Get方式的调用

private void button1_Click(object sender,EventArgs e)

{

??? string strURL = "http://localhost:12074/Service1.asmx/

???????????? GetProductPrice?ProductId=";

??? strURL += this.textBox1.Text;???????????

??? //创建一个HTTP请求

??? HttpWebRequest request = (HttpWebRequest)WebRequest.Create(strURL);

??? //request.Method="get";

??? HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();

Stream s = response.GetResponseStream();

//转化为XML,自己进行处理

??? XmlTextReader Reader = new XmlTextReader(s);

??? Reader.MoveToContent();

??? string strValue = Reader.ReadInnerXml();

??? strValue = strValue.Replace("&lt;","<");

??? strValue = strValue.Replace("&gt;",">");

??? MessageBox.Show(strValue);

??? Reader.Close();

}

方式二:Post方式的调用

private void button2_Click(object sender,EventArgs e)

{

??? string strURL = "http://localhost:12074/Service1.asmx/GetProductPrice";

??? //创建一个HTTP请求

??? HttpWebRequest request = (HttpWebRequest)WebRequest.Create(strURL);

??? //Post请求方式

??? request.Method = "POST";

??? //内容类型

??? request.ContentType = "application/x-www-form-urlencoded";

??? //设置参数,并进行URL编码

??? string paraUrlCoded = HttpUtility.UrlEncode("ProductId");

??? paraUrlCoded += "=" + HttpUtility.UrlEncode(this.textBox1.Text);

??? byte[] payload;

??? //将URL编码后的字符串转化为字节

??? payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);

??? //设置请求的ContentLength

??? request.ContentLength = payload.Length;

??? //发送请求,获得请求流

??? Stream writer = request.GetRequestStream();

??? //将请求参数写入流

??? writer.Write(payload,payload.Length);

??? //关闭请求流

??? writer.Close();???????????

??? //获得响应流

??? HttpWebResponse response = (HttpWebResponse)request.GetResponse();

Stream s = response.GetResponseStream();

??? //转化为XML,自己进行处理

??? XmlTextReader Reader = new XmlTextReader(s);

??? Reader.MoveToContent();

??? string strValue = Reader.ReadInnerXml();

??? strValue = strValue.Replace("&lt;",">");

??? MessageBox.Show(strValue);

??? Reader.Close();

}

Get请求与Post请求的主要区别在于Post的参数要经过URL编码并在获得请求之前传送,而Get把参数用URL编码后直接附加到请求的URL后面。

URL编码是一种字符编码格式,它确保传递的参数由一致的文本组成(如将空格编码为“%20”)。

由于Web Service返回的是标准的XML文档,所以,基本的原理都是通过WebRequest请求后,自己对返回的XML数据进行处理,得到自己想要的信息。同时,这种方式还有一个好处是可以动态调用不同的WebService接口,比较灵活。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读