WCF 学习总结2 -- 配置WCF

时间:2022-09-03 15:38:34

前面一篇文章《WCF 学习总结1 -- 简单实例》一股脑儿展示了几种WCF部署方式,其中配置文件(App.config/Web.config)都是IDE自动生成,省去了我们不少功夫。现在回过头来看看IDE提供的Wcf Service Library项目模板中的默认服务端配置文件——App.config里面究竟有什么秘密。

服务端的配置文件主要是对services、bindings、behaviors的配置。在默认的App.config中,使用的是WCF Framework定义好的wsHttpBinding默认配置,所以看不到binding配置节。

WCF 学习总结2 -- 配置WCF

配置节展开如下图:WCF 学习总结2 -- 配置WCF

BTW: "元数据端点”通过WS-MetadataExchange帮我们实现了对服务的描述,提供了WSDL,启动Host之后我们可以通过http://localhost:8732/Design_Time_Addresses/WcfServiceLib/Service1/?wsdl 查看到公开的服务描述。

配置节展开如下图:WCF 学习总结2 -- 配置WCF

关于WCF中的地址和绑定,需要补充一下。

WCF中支持的传输协议包括HTTP、TCP、Peer network(对等网)、IPC(基于命名管道的内部进程通信)以及MSMQ(微软消息队列),每个协议对应一个地址类型:

  • HTTP地址:http://localhost:8080/
  • TCP地址: net.tcp://localhost:8080/
  • IPC地址: net.pipe://localhost/  (适用于跨进程,不能使用于不同机器间)
  • MSMQ地址: net.msmq://localhost/
  • 对等网地址: net.p2p://localhost/

WCF中提供的绑定有:

  • BasicHttpBinding: 最简单的绑定类型,通常用于 Web Services。使用 HTTP 协议,Text/XML 编码方式。
  • WSHttpBinding: 比 BasicHttpBinding 更加安全,通常用于 non-duplex 服务通讯。
  • WSDualHttpBinding: 和 WSHttpBinding 相比,它支持 duplex 类型的服务。
  • WSFederationHttpBinding: 支持 WS-Federation 安全通讯协议。
  • NetTcpBinding: 效率最高,安全的跨机器通讯方式。
  • NetNamedPipeBinding: 安全、可靠、高效的单机服务通讯方式。
  • NetMsmqBinding: 使用消息队列在不同机器间进行通讯。
  • NetPeerTcpBinding: 使用 P2P 协议在多机器间通讯。
  • MsmqIntegrationBinding: 使用现有的消息队列系统进行跨机器通讯。如 MSMQ。

    ------ 弱弱的分隔线 -----

OK,有了上面的基础,就让WCF风暴来的猛烈些吧。做一个多服务,多端点的示例。

WCF 学习总结2 -- 配置WCF

1.WcfServiceLib 代码:

  1. [ServiceContract]  
  2. public interface IService  
  3. {  
  4.     [OperationContract]  
  5.     string GetMessage();  
  6. }  
  7. public class Service1 : IService  
  8. {  
  9.     public string GetMessage()  
  10.     {  
  11.         var address = OperationContext.Current.Channel.LocalAddress.ToString();  
  12.         return string.Format("From Server1: Hello Client at [{0}]", address);   
  13.     }  
  14. }  
  15. public class Service2 : IService  
  16. {  
  17.     public string GetMessage()  
  18.     {  
  19.         var address = OperationContext.Current.Channel.LocalAddress.ToString();  
  20.         return string.Format("来自 Service2: 好 Client at [{0}]", address);  
  21.     }  
  22. }  

2.WcfConsoleHost 代码:

  1. static void Main(string[] args)  
  2. {  
  3.     ServiceHost host1 = new ServiceHost(typeof(WcfServiceLib.Service1));  
  4.     host1.Open();  
  5.     Console.WriteLine("Server1 Opened!");  
  6.     ServiceHost host2 = new ServiceHost(typeof(WcfServiceLib.Service2));  
  7.     host2.Open();  
  8.     Console.WriteLine("Server2 Opened!");  
  9.     Console.Read();  
  10. }  

3.服务端配置文件:
 

  1. <?xml version="1.0" encoding="utf-8" ?>  
  2. <configuration>  
  3.   <system.web>  
  4.     <compilation debug="true" />  
  5.   </system.web>  
  6.   <system.serviceModel>  
  7.     <services>  
  8.       <service name="WcfServiceLib.Service1">  
  9.         <host>  
  10.           <baseAddresses>  
  11.             <add baseAddress = "http://localhost:9999/WcfStudy3/Service1" />  
  12.             <add baseAddress = "net.tcp://localhost:8888/WcfStudy3/Service1" />  
  13.           </baseAddresses>  
  14.         </host>  
  15.         <endpoint address ="serviceEN_1" binding="wsHttpBinding" contract="WcfServiceLib.IService" />  
  16.         <endpoint address ="serviceEN_2" binding="mexTcpBinding" contract="WcfServiceLib.IService" />  
  17.         <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>  
  18.       </service>  
  19.       <service name="WcfServiceLib.Service2">  
  20.         <host>  
  21.           <baseAddresses>  
  22.             <add baseAddress = "http://localhost:9999/WcfStudy3/Service2" />  
  23.             <add baseAddress = "net.tcp://localhost:8888/WcfStudy3/Service2" />  
  24.           </baseAddresses>  
  25.         </host>  
  26.         <endpoint address ="serviceCH_1" binding="wsHttpBinding" contract="WcfServiceLib.IService" />  
  27.         <endpoint address ="serviceCH_2" binding="mexTcpBinding" contract="WcfServiceLib.IService" />  
  28.         <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>  
  29.       </service>  
  30.     </services>  
  31.     <behaviors>  
  32.       <serviceBehaviors>  
  33.         <behavior>  
  34.           <serviceMetadata httpGetEnabled="True"/>  
  35.           <serviceDebug includeExceptionDetailInFaults="true" />  
  36.         </behavior>  
  37.       </serviceBehaviors>  
  38.     </behaviors>  
  39.   </system.serviceModel>  
  40. </configuration>  

4. 启动Host,在Client工程中添加Service Reference 
因为有两个Service,所以要添加两次。 
(1) WcfSvc1(Url:http://localhost:9999/WcfStudy3/Service1

WCF 学习总结2 -- 配置WCF

(2) WcfSvc2(Url:http://localhost:9999/WcfStudy3/Service2) 图略

5. 客户端配置文件: 配置节中,生成了4个Endpoint,分别对应服务端的4个Endpoint。通过 
name属性区别。

  1. <client>
  2. <endpoint address="http://localhost:9999/WcfStudy3/Service1/serviceEN_1"
  3. binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService"
  4. contract="WcfSvc1.IService" name="WSHttpBinding_IService">
  5. </endpoint>
  6. <endpoint address="net.tcp://localhost:8888/WcfStudy3/Service1/serviceEN_2"
  7. binding="netTcpBinding" bindingConfiguration="MetadataExchangeTcpBinding_IService"
  8. contract="WcfSvc1.IService" name="MetadataExchangeTcpBinding_IService" />
  9. <endpoint address="http://localhost:9999/WcfStudy3/Service2/serviceCH_1"
  10. binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService1"
  11. contract="WcfSvc2.IService" name="WSHttpBinding_IService1">
  12. </endpoint>
  13. <endpoint address="net.tcp://localhost:8888/WcfStudy3/Service2/serviceCH_2"
  14. binding="netTcpBinding" bindingConfiguration="MetadataExchangeTcpBinding_IService1"
  15. contract="WcfSvc2.IService" name="MetadataExchangeTcpBinding_IService1" />
  16. </client>

6. 客户端代码:

  1. static void Main(string[] args)  
  2. {  
  3.     Console.WriteLine("------------");  
  4.     WcfSvc1.ServiceClient client1_1 = new WcfSvc1.ServiceClient("WSHttpBinding_IService");  
  5.     Console.WriteLine(client1_1.GetMessage());  
  6.     Console.WriteLine("------------");  
  7.     WcfSvc1.ServiceClient client1_2 = new WcfSvc1.ServiceClient("MetadataExchangeTcpBinding_IService");  
  8.     Console.WriteLine(client1_2.GetMessage());  
  9.     Console.WriteLine("------------");  
  10.     WcfSvc2.ServiceClient client2_1 = new WcfSvc2.ServiceClient("WSHttpBinding_IService1");  
  11.     Console.WriteLine(client2_1.GetMessage());  
  12.     Console.WriteLine("------------");  
  13.     WcfSvc2.ServiceClient client2_2 = new WcfSvc2.ServiceClient("MetadataExchangeTcpBinding_IService1");  
  14.     Console.WriteLine(client2_2.GetMessage());  
  15.     Console.Read();  
  16. }  

7.运行结果:

WCF 学习总结2 -- 配置WCF

有人会问,那么生成完的配置文件都要一个个手动修改吗?答案当然不是,VS已经为我们准备了WCF配置工具:IDE > Tools > WCF Service Configuration Editor 。 关于工具的使用,大家可以看这里: http://www.rainsts.net/article.asp?id=441

上面的示例代码,请猛击这里下载

WCF 学习总结2 -- 配置WCF的更多相关文章

  1. WCF学习第二篇:WCF 配置架构。这有助于对wcf配置的理解和记忆

    使用 Windows Communication Foundation (WCF) 配置元素,您可以配置 WCF 服务和客户端应用程序. 可以使用配置编辑器工具 (SvcConfigEditor.ex ...

  2. WCF学习笔记&lpar;1&rpar;——Hello WCF

    1.什么是WCF Windows Communication Foundation(WCF)是一个面向服务(SOA)的通讯框架,作为.NET Framework 3.0的重要组成部分于2006年正式发 ...

  3. WCF学习系列二---【WCF Interview Questions – Part 2 翻译系列】

    http://www.topwcftutorials.net/2012/09/wcf-faqs-part2.html WCF Interview Questions – Part 2 This WCF ...

  4. WCF学习系列一【WCF Interview Questions-Part 1 翻译系列】

    http://www.topwcftutorials.net/2012/08/wcf-faqs-part1.html WCF Interview Questions – Part 1 This WCF ...

  5. WCF学习系列三--【WCF Interview Questions – Part 3 翻译系列】

    http://www.topwcftutorials.net/2012/10/wcf-faqs-part3.html WCF Interview Questions – Part 3 This WCF ...

  6. WCF学习系列四--【WCF Interview Questions – Part 4 翻译系列】

    WCF Interview Questions – Part 4   This WCF service tutorial is part-4 in series of WCF Interview Qu ...

  7. &lbrack;WCF学习笔记&rsqb; 我的WCF之旅(1):创建一个简单的WCF程序

    近日学习WCF,找了很多资料,终于找到了Artech这个不错的系列.希望能从中有所收获. 本文用于记录在学习和实践WCF过程中遇到的各种基础问题以及解决方法,以供日后回顾翻阅.可能这些问题都很基础,可 ...

  8. WCF学习——构建第二个WCF应用程序(五)

    一.创建数据服务 1.在“解决方案资源管理器”中,使用鼠标左键选中“WcfService”项目,然后在菜单栏上,依次选择“项目”.“添加新项”. 2.在“添加新项”对话框中,选择“Web”节点,然后选 ...

  9. WCF学习——构建第二个WCF应用程序(六)

    一.创建客户端应用程序 若要创建客户端应用程序,你将另外添加一个项目,添加对该项目的服务引用,配置数据源,并创建一个用户界面以显示服务中的数据.若要创建客户端应用程序,你将另外添加一个项目,添加对该项 ...

随机推荐

  1. 简单选择排序算法(C&plus;&plus;版)

    #include <iostream> using namespace std; /** Simple Select Sort * brief: * Key: * * position: ...

  2. golang路上的小学生系列--使用reflect查找package路径

    本文同时发布在个人博客chinazt.cc 和 gitbook 今日看到了一个有趣的golang项目--kolpa(https://github.com/malisit/kolpa). 这个项目可以用 ...

  3. iOS libyuv

    libyuv是Google开源库,可用作图像数据格式的转换,比如视频流编解码时格式的转换,YUV数据转化RGB等 libyuv静态库 为了方便使用,已经将libyuv源代码打包成了iOS静态库,lib ...

  4. python 聊天程序&lpar;基于UDP&rpar;

    from threading import Thread from socket import * updSocket = socket(AF_INET,SOCK_DGRAM) updSocket.b ...

  5. &lbrack;HDFS Manual&rsqb; CH3 HDFS Commands Guide

    HDFS Commands Guide HDFS Commands Guide 3.1概述 3.2 用户命令 3.2.1 classpath 3.2.2 dfs 3.2.3 envvars 3.2.4 ...

  6. TCARS&colon; Time- and Community-Aware Recommendation System&lpar;时间感知和社区感知推荐系统&rpar;

    随着用户在物品上产生了大量行为,推荐系统成为了线上系统的重要组成部分.推荐系统算法使用用户对物品的行为信息以及上下文数据为每个用户推荐一组物品.算法根据用户之间及物品之间的相似度建立.本文介绍了一个基 ...

  7. SQLTest系列之INSERT语句测试

    原文地址:https://yq.aliyun.com/articles/64375?spm=5176.100239.blogcont69187.22.fhUpoZ 摘要: 一款可以测试MSSQL Se ...

  8. python面试题&lpar;一&rpar;

    1.通过代码实现如下转换: 二进制转换成十进制:v = “0b1111011” #先将其转换为字符串,再使用int函数,指定进制转换为十进制. print(int("0b1111011&qu ...

  9. 怎么解决ORACLE 中 CHAR类型的索引问题

    在很多场景中,都有如下情况 trim(a.colunm1) = trim(b.colunm2) 应该怎么优化呢? 用到 TRIM 的很多原因是某些系统为了提高查询效率,不使用  ORACLE 的特有的 ...

  10. 删除XML文档中某节点

    前几天Insus.NET在写了一系列XML文档进行操作.创建 <怎样创建XML文档> http://www.cnblogs.com/insus/p/3276944.html       & ...