学习WCF时,你可能会遇到WCF behaviors配置节问题,这里将介绍WCF behaviors配置节问题的解决方法,在这里拿出来和大家分享一下。当我们在定义一个实现了Service Contract的类时, binding和address信息是客户端必须知道的,否则无法调用该服务。然而,如果需要指定服务在执行方面的相关特性时,就必须定义服务的 WCF behaviors配置节。在WCF中,定义behavior就可以设置服务的运行时属性,甚至于通过自定义WCF behaviors配置节插入一些自定义类型。例如通过指定 ServiceMetadataBehavior,可以使WCF服务对外公布Metadata。配置如下:
- <behaviors>
- <serviceBehaviors>
- <behavior name="metadataSupport">
- <serviceMetadata httpGetEnabled="true" httpGetUrl=""/>
- < SPAN>behavior>
- <serviceBehaviors>
- <behaviors>
在 WCF中,behavior被定义为Attribute,其中,System.ServiceModel.ServiceBehaviorAttribute和 System.ServiceModel.OperationBehaviorAttribute是最常用的behavior。虽然,WCF behaviors配置节作为Attribute可以通过编程的方式直接施加到服务上,但出于灵活性的考虑,将behavior定义到配置文件中才是***的设计方式。
利用ServiceBehavior与OperationBehavior可以控制服务的如下属性:
#T#◆对象实例的生命周期;
◆并发与异步处理;
◆配置行为;
◆事务行为;
◆序列化行为;
◆元数据转换;
◆会话的生命周期;
◆地址过滤以及消息头的处理;
◆模拟(Impersonation);
例如,通过ServiceBehavior设置对象实例的生命周期:
- <behaviors>
- <serviceBehaviors>
- <behavior name="metadataSupport">
- <instanceContextMode httpGetEnabled="true" httpGetUrl=""/>
- < SPAN>behavior>
- <serviceBehaviors>
- <behaviors>