开发人员对WCF编程理解讲述

在后台运行WCF编程应用程序。出现提示后,单击OK按钮激活Web.config中的调试功能。在控制台应用程序窗口中输入一个数字,按下回车键,如下图所示显示一个简单的WCF服务和客户程序。

试试看:一个简单的WCF服务和客户程序#t#

(1) WCF编程:在目录C:BegVCSharp\Chapter35下创建一个新的WCF服务应用程序项目Ch35Ex01

(2)WCF编程: 在解决方案中添加一个控制台应用程序Ch35Ex01Client。

(3) WCF编程:在Build菜单上单击Build Solution选项。

(4)WCF编程: 在Solution Explorer中右击Ch35Ex01Client,选择Add Service Reference选项。

(5)WCF编程; 在Add Service Reference对话框中,单击Discover。

(6)WCF编程: 开始开发Web服务器,加载WCF服务的信息后,展开该引用,查看其细节,如图

(7) WCF编程:单击OK按钮,添加服务引用。

(8)WCF编程: 在Ch35Ex01Client应用程序中修改Pragram.cs中的代码,如下所示:

 
 
 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using Ch35Ex01Client.ServiceReference1;  
  6. namespace Ch35Ex01Client  
  7. {  
  8. class Program  
  9. {  
  10. static void Main(string[] args)  
  11. {  
  12. string numericInput = null;  
  13. int intParam;  
  14. do  
  15. {  
  16. Console.WriteLine(  
  17. "Enter an integer and press enter to call the WCF service.");  
  18. numericInput = Console.ReadLine();  
  19. }  
  20. while (!int.TryParse(numericInput, out intParam));  
  21. Service1Client client = new Service1Client();  
  22. Console.WriteLine(client.GetData(intParam));  
  23. Console.WriteLine("Press an key to exit.");  
  24. Console.ReadKey();  
  25. }  
  26. }  

本文题目:开发人员对WCF编程理解讲述
文章分享:http://www.shufengxianlan.com/qtweb/news20/410820.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联