大多数开发人员在使用WCF进行版本更新时,大部分都会通过继承的方式来实现。那么,还有没有其他更加简便的方式呢?下面我们就为大家介绍一种直接修改原有服务和数据类型的方法来实现WCF版本更新。
创新互联建站于2013年开始,是专业互联网技术服务公司,拥有项目成都网站建设、成都做网站网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元卧龙做网站,已为上家服务,为卧龙各地企业和个人服务,联系电话:13518219792
WCF版本更新测试原型:
- [DataContract]
- public class Data
- {
- [DataMember]
- public int x;
- }
- [ServiceContract]
- public interface IMyService
- {
- [OperationContract]
- void Test(Data d);
- }
客户端代理
- //------------------------------------------
- // < auto-generated>
- // 此代码由工具生成。
- // 运行库版本:2.0.50727.42
- //
- // 对此文件的更改可能会导致不正确的行为,并且如果
- // 重新生成代码,这些更改将会丢失。
- // < /auto-generated>
- //-------------------------------------------
- namespace ConsoleApplication1.localhost
- {
- [GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
- [DataContractAttribute(Namespace = "...")]
- [SerializableAttribute()]
- public partial class Data : object, IExtensibleDataObject
- {
- [OptionalFieldAttribute()]
- private int xField;
- [DataMemberAttribute()]
- public int x
- {
- get
- {
- return this.xField;
- }
- set
- {
- this.xField = value;
- }
- }
- }
- [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
- [ServiceContractAttribute(ConfigurationName =
"ConsoleApplication1.localhost.IMyService")]- public interface IMyService
- {
- [OperationContractAttribute(Action = "http://tempuri.org/IMyService/Test",
ReplyAction = "...")]- void Test(Data d);
- }
- [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
- public interface IMyServiceChannel : IMyService, IClientChannel
- {
- }
- [DebuggerStepThroughAttribute()]
- [GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
- public partial class MyServiceClient : ClientBase< IMyService>,
IMyService- {
- public void Test(Data d)
- {
- base.Channel.Test(d);
- }
- }
- }
我们将对该服务和数据类型进行升级,添加新的成员和服务方法来实现WCF版本更新。
- [DataContract]
- public class Data
- {
- [DataMember]
- public int x;
- [DataMember]
- public int y;
- }
- [ServiceContract]
- public interface IMyService
- {
- [OperationContract]
- void Test(Data d);
- [OperationContract]
- void Test2(int x);
- }
测试结果表明,客户端在不更新代理文件的情况下依然正常执行。看来直接通过修改进行版本更新也没有什么问题。要是我们修改了成员的名称会怎么样?也没问题,不过要使用 Name 属性了。
- [DataContract]
- public class Data
- {
- [DataMember(Name="x")]
- public int x2;
- [DataMember]
- public int y;
- }
- [ServiceContract]
- public interface IMyService
- {
- [OperationContract]
- void Test(Data d);
- [OperationContract]
- void Test2(int x);
- }
WCF版本更新的操作提示:
1. ***为服务和相关成员特性添加 Namespace / Name 属性。
2. 还是使用继承方式进行版本更新要好些,避免因为意味更改造成原有客户端无法执行。
分享名称:WCF版本更新应用直接修改方法实现
当前网址:http://www.mswzjz.cn/qtweb/news12/264312.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能