码迷,mamicode.com
首页 > Windows程序 > 详细

C# winForm调用WebService

时间:2017-08-20 20:04:03      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:img   span   void   null   object   对话框   test   tool   ring   

C#winForm调用WebService的远程接口

  • 创建一个WebService工程用例
  • 添加服务引用
  • 添加webService服务地址
  • 输入命名空间名称
  • 主要代码
  • 测试成功截图
  • 工程代码下载

新建一个测试工程用例如图:

 技术分享

布局如图:

技术分享

1、添加服务引用

 技术分享
 

2、在弹出的添加服务引用对话框地址栏中输入WebService地址,

如:http://localhost:6677/webservice1.asmx

技术分享

 

技术分享

 

3、输入命名空间名称或保持默认

4、主要测试代码:

技术分享
 1        myWebServiceTest.WebService1SoapClient myWebService = null;
 2         private void Form1_Load(object sender, EventArgs e)
 3         {
 4             myWebService = new myWebServiceTest.WebService1SoapClient("WebService1Soap");  
 5         }
 6         private void button1_Click(object sender, EventArgs e)
 7         {
 8             textBox1.Text = myWebService.HelloWorld();
 9         }
10 
11         private void button2_Click(object sender, EventArgs e)
12         {
13             textBox2.Text = myWebService.GetStr(textBox3.Text);
14         }
技术分享

访问WebService服务端的代码:

技术分享
 1         [WebMethod]
 2         public string HelloWorld()
 3         {
 4              return "Hello World";
 5         }        
 6 
 7 
 8        [WebMethod]
 9         public string GetStr(string name)
10         {
11              return this.HelloWorld() + "-->:" + name;
12         }
技术分享

 

5、运行结果图:

技术分享

C# winForm调用WebService

标签:img   span   void   null   object   对话框   test   tool   ring   

原文地址:http://www.cnblogs.com/bdqczhl/p/7400717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!