WCF版本更新应用直接修改方法实现

开发 开发工具
我们将会在接下来的这篇文章中为大家详细介绍一下有关WCF版本更新的不同实现方式,希望大家可以从中获得一些帮助。

大多数开发人员在使用WCF进行版本更新时,大部分都会通过继承的方式来实现。那么,还有没有其他更加简便的方式呢?下面我们就为大家介绍一种直接修改原有服务和数据类型的方法来实现WCF版本更新。

WCF版本更新测试原型:

  1. [DataContract]  
  2. public class Data  
  3. {  
  4. [DataMember]  
  5. public int x;  
  6. }  
  7. [ServiceContract]  
  8. public interface IMyService  
  9. {  
  10. [OperationContract]  
  11. void Test(Data d);  

客户端代理

  1. //------------------------------------------  
  2. // < auto-generated> 
  3. // 此代码由工具生成。  
  4. // 运行库版本:2.0.50727.42  
  5. //  
  6. // 对此文件的更改可能会导致不正确的行为,并且如果  
  7. // 重新生成代码,这些更改将会丢失。  
  8. // < /auto-generated> 
  9. //-------------------------------------------  
  10. namespace ConsoleApplication1.localhost  
  11. {  
  12. [GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]  
  13. [DataContractAttribute(Namespace = "...")]  
  14. [SerializableAttribute()]  
  15. public partial class Data : object, IExtensibleDataObject  
  16. {  
  17. [OptionalFieldAttribute()]  
  18. private int xField;  
  19. [DataMemberAttribute()]  
  20. public int x  
  21. {  
  22. get  
  23. {  
  24. return this.xField;  
  25. }  
  26. set  
  27. {  
  28. this.xField = value;  
  29. }  
  30. }  
  31. }  
  32. [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]  
  33. [ServiceContractAttribute(ConfigurationName = 
    "ConsoleApplication1.localhost.IMyService")]  
  34. public interface IMyService  
  35. {  
  36. [OperationContractAttribute(Action = "http://tempuri.org/IMyService/Test", 
    ReplyAction = "...")]  
  37. void Test(Data d);  
  38. }  
  39. [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]  
  40. public interface IMyServiceChannel : IMyService, IClientChannel  
  41. {  
  42. }  
  43. [DebuggerStepThroughAttribute()]  
  44. [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]  
  45. public partial class MyServiceClient : ClientBase< IMyService>, 
    IMyService  
  46. {  
  47. public void Test(Data d)  
  48. {  
  49. base.Channel.Test(d);  
  50. }  
  51. }  

我们将对该服务和数据类型进行升级,添加新的成员和服务方法来实现WCF版本更新。

  1. [DataContract]  
  2. public class Data  
  3. {  
  4. [DataMember]  
  5. public int x;  
  6. [DataMember]  
  7. public int y;  
  8. }  
  9. [ServiceContract]  
  10. public interface IMyService  
  11. {  
  12. [OperationContract]  
  13. void Test(Data d);  
  14. [OperationContract]  
  15. void Test2(int x);  

测试结果表明,客户端在不更新代理文件的情况下依然正常执行。看来直接通过修改进行版本更新也没有什么问题。要是我们修改了成员的名称会怎么样?也没问题,不过要使用 Name 属性了。

  1. [DataContract]  
  2. public class Data  
  3. {  
  4. [DataMember(Name="x")]  
  5. public int x2;  
  6. [DataMember]  
  7. public int y;  
  8. }  
  9. [ServiceContract]  
  10. public interface IMyService  
  11. {  
  12. [OperationContract]  
  13. void Test(Data d);  
  14. [OperationContract]  
  15. void Test2(int x);  

WCF版本更新的操作提示:

1. ***为服务和相关成员特性添加 Namespace / Name 属性。

2. 还是使用继承方式进行版本更新要好些,避免因为意味更改造成原有客户端无法执行。

【编辑推荐】

  1. WCF枚举类型正确使用方法演示
  2. WCF服务实例管理模式之PreSession应用
  3. WCF控制服务对象释放特殊方式介绍
  4. 深入分析WCF事务投票实现方式
  5. WCF MSMQ队列基本概念简述
责任编辑:曹凯 来源: 豆豆网
相关推荐

2009-12-22 16:36:38

WCF重载

2009-12-22 17:30:47

WCF Address

2009-12-21 16:04:45

WCF Dispose

2010-02-22 11:02:06

WCF元数据

2009-12-21 17:48:30

WCF方法重载

2010-02-22 14:28:35

WCF实现loadin

2010-03-02 17:35:20

WCF服务加载

2009-12-21 17:40:25

WCF会话

2010-02-24 09:38:58

WCF应用编码

2010-02-24 11:22:04

WCF方法重载

2010-02-26 16:05:14

寄宿WCF服务

2009-12-21 17:24:46

WCF负载平衡

2010-02-23 14:48:38

WCF事件通知

2009-12-21 18:10:50

WCF实现事件通知

2010-02-26 11:22:16

LitwareHR使用

2010-02-25 09:58:05

WCF配置指定Addr

2009-12-21 14:58:57

WCF用户密码认证

2010-02-25 13:48:23

WCF动态创建代码

2010-02-24 16:39:27

WCF客户端处理

2010-02-25 09:13:34

WCF异步调用
点赞
收藏

51CTO技术栈公众号