WCF行为控制代码示例应用解读

开发 开发工具
WCF行为控制在实际应用中是一个作用比较的操作技术。我们今天就会通过这篇文章中介绍的内容为大家详细讲解有关内容。

WCF开发工具中有很多比较重要的应用技术及供功能特点需要我们熟练应用。在这里我们将会为大家详细介绍一下有关WCF行为控制的相关内容。希望大家可以从这里介绍的内容中获得相关帮助。#t#

在完成服务契约设计和服务实现后,我们可以设置该服务的运行期行为(Behavior)。这些WCF行为控制包括 Service Behaviors、Endpoint Behaviors、Contract Behaviors、Operation Behaviors。

有关所有行为的说明,可以查看 ms-help://MS.MSSDK.1033/MS.NETFX30SDK.1033/WCF_con/html/5c5450ea-6af1-4b75-a267-613d0ac54707.htm。

以下就常用的行为使用,做些演示。

ServiceBehaviorAttribute & OperationBehaviorAttribute

这是两个最常用的WCF行为控制特性,可用于控制:

服务对象生命周期。

并发管理。

异步通讯。

配置文件参数。

事务。

元数据转换。

会话(Session)周期。

等等...

 

  1. [ServiceContract]  
  2. public interface ICalculate  
  3. {  
  4. [OperationContract]  
  5. int Add(int a, int b);  
  6. }  
  7. [ServiceBehavior(InstanceContextModeInstanceContextMode=
    InstanceContextMode.PerCall)]  
  8. public class CalculateService : ICalculate  
  9. {  
  10. public int Add(int a, int b)  
  11. {  
  12. Console.WriteLine(this.GetHashCode());  
  13. return a + b;  
  14. }  
  15. }  
  16. public class WcfTest  
  17. {  
  18. public static void Test()  
  19. {  
  20. AppDomain.CreateDomain("Server").DoCallBack(delegate  
  21. {  
  22. ServiceHost host = new ServiceHost(typeof(CalculateService));  
  23. host.AddServiceEndpoint(typeof(ICalculate), new WSHttpBinding(), 
    "http://localhost:8080/calc");  
  24. host.Open();  
  25. });  
  26. ChannelFactory<ICalculate> factory = new ChannelFactory
    <ICalculate>(new WSHttpBinding(),   
  27. "http://localhost:8080/calc");  
  28. ICalculate o = factory.CreateChannel();  
  29. Console.WriteLine(o.Add(1, 2));  
  30. Console.WriteLine(o.Add(1, 2));  
  31. factory.Close();  
  32. }  

 

输出:

 

  1. 30136159  
  2. 3  
  3. 41153804  
  4. 3  
  5. ServiceMetadataBehavior 

 

用于开启元数据获取功能。只有使用该WCF行为控制,客户端才能通过 Svcutil.exe 或其他工具获取服务信息,进而生成客户端代理文件。

 

  1. ServiceHost host = new ServiceHost(typeof(CalculateService));  
  2. host.AddServiceEndpoint(typeof(ICalculate), 
    new BasicHttpBinding(), "http://localhost:8080/calc");  
  3. ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();  
  4. behavior.HttpGetEnabled = true;  
  5. behavior.HttpGetUrl = new Uri("http://localhost:8080/calc");  
  6. host.Description.Behaviors.Add(behavior);  
  7. host.Open();  
  8. ServiceDebugBehavior 

 

开启调试功能,如将服务器端的异常信息直接传送给客户端。

 

  1. ServiceHost host = new ServiceHost(typeof(CalculateService));  
  2. host.AddServiceEndpoint(typeof(ICalculate), 
    new WSHttpBinding(), "http://localhost:8080/calc");  
  3. host.Description.Behaviors.Find<ServiceDebugBehavior>()
    .IncludeExceptionDetailInFaults = true;  
  4. host.Open(); 

以上就是对WCF行为控制的相关介绍。

责任编辑:曹凯 来源: 豆豆网
相关推荐

2010-03-02 16:15:59

WCF控制事务

2010-02-25 09:36:28

WCF行为控制

2010-02-26 13:26:55

WCF消息编码器

2010-02-26 10:46:12

WCF行为扩展

2010-02-24 13:38:18

WCF PreCal模

2010-03-03 13:32:08

Python压缩文件

2010-03-01 16:04:31

WCF服务契约

2010-02-22 15:06:31

WCF信道监听器

2010-02-25 17:22:39

WCF服务行为

2009-11-06 14:08:06

WCF行为扩展

2009-12-08 14:28:16

XTemplate +

2009-12-08 18:14:53

WCF Service

2010-02-04 16:07:39

C++回调函数

2010-01-04 17:03:27

Silverlight

2010-03-02 09:24:22

WCF变更行为

2010-01-19 17:03:25

VB.NET可执行语句

2010-01-08 10:48:05

VB.NET多线程

2010-01-05 09:57:34

.NET Framew

2010-03-01 14:50:30

WCF行为类型

2009-12-02 10:49:59

PHP解析XML元素结
点赞
收藏

51CTO技术栈公众号