WCF学习(五)数据契约之已知类型

准备技术:

     1.C#基础知识

     2.了解WCF基础知识

 

 

     在正常的c#开发中我们是允许用子类去替换基类的,这也是所谓的替换原则。但是我们在WCF中确不能用数据契约的子类来替换父类的,因为这中间存在一个序列化的问题。举个例子:

     我们有数据契约:

          [DataContract]

          class Employee{...}

     服务契约中:

          [ServiceContract]

          interface IEmployeeManager

          {

               [OperationContract]

               void AddEmployee(Employee employee);

          }

     然后我们在客户端的代理中就算有类:Intern继承于

          [DataContract]

          class Intern:Employee{...}

     然后再客户端调用时:

          proxy.AddEmployee(new Intern())是会出错的。因为在服务器端无法识别Intern对象,因为他无法去反序列化Intern成Employee对象(WCF序列化)。

     

     

     WCF提供给我们了一个解决的办法就是使用KnownTypeAttribute特性,在基类上标识对应的子类就可以了。KnownTypeAttribute特性可以使用在Struct跟Class上。示例:

          [DataContract]

          [KnownType(typeof(Customer))]

          class Employee{...}

          

          [DataContract]

          class Intern:Employee{...}

这样我们就在所有的契约跟操作上,能跨越所有的服务和终结点,允许服务接受子类。但是这样会遇到一个问题,我们不能去特定的指定某一个服务操作,所以KnownType的缺陷就是范围过于广泛。WCF提供了另外一个Attribute--ServiceKnownType.

 

ServiceKnownType 特性

     KnownType只能应用在数据契约的基类上,而ServiceKnownType可以在Interface、Method、Class上标识。看一个示例Employee.cs:

 

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.Runtime.Serialization;

namespace HenllyeeDataContract
{
    [DataContract]
    
public class Employee
    {
        
#region Fields
        
private string _name;
        
private int _age;
        
#endregion

        
#region Properties
        
/// <summary>
        
/// The employee's name
        
/// </summary>
        [DataMember(Order=0)]
        
public string Name
        {
            
get 
            {
                
return this._name;
            }
            
set
            {
                
this._name = value;
            }
        }

        
/// <summary>
        
/// The employee's age
        
/// </summary>
        [DataMember(Order=1)]
        
public int Age
        {
            
get
            {
                
return this._age;
            }
            
set
            {
                
this._age = value;
            }
        }
        
#endregion
    }

    [DataContract]
    
public class Intern : Employee
    {
        
private int _internship;

        
/// <summary>
        
/// The intern's working days
        
/// </summary>
        [DataMember]
        
public int Internship
        {
            
get
            {
                
return this._internship;
            }
            
set
            {
                
this._internship = value;
            }
        }
    }
}

 

在数据契约中我们并没有去指定KnownType,我们在服务契约的操作上去标识ServiceKnownType特性,EmployeeManage.cs:

 

 

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.Runtime.Serialization;

namespace HenllyeeServiceContract
{
    [ServiceContract]
    
public interface IEmployeeManage
    {
        [OperationContract]
        [ServiceKnownType(
typeof(HenllyeeDataContract.Intern))]
        
void AddEmployee(HenllyeeDataContract.Employee emlpoyee);

        [OperationContract]
        [ServiceKnownType(
typeof(HenllyeeDataContract.Intern))]
        HenllyeeDataContract.Employee GetEmployee();
    }

    [ServiceBehavior(InstanceContextMode
=InstanceContextMode.Single)]
    
public class EmployeeManage : IEmployeeManage
    {
        
private HenllyeeDataContract.Employee _employee;

        
/// <summary>
        
/// Set employee
        
/// </summary>
        
/// <param name="emlpoyee">the employee's object</param>
        public void AddEmployee(HenllyeeDataContract.Employee emlpoyee)
        {
            
this._employee = emlpoyee;
        }

        
/// <summary>
        
/// Get a employee
        
/// </summary>
        
/// <returns></returns>
        public HenllyeeDataContract.Employee GetEmployee()
        {
            
return this._employee;
        }
    }
}

 

在客户端我们调用:

 

 

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Client
{
    
class Program
    {
        
static void Main(string[] args)
        {
            EmployeeService.EmployeeManageClient proxy 
= new Client.EmployeeService.EmployeeManageClient();
            EmployeeService.Intern intern 
= new Client.EmployeeService.Intern();
            intern.Age 
= 22;
            intern.Name 
= "Henllyee Cui";
            intern.Internship 
= 120;
            proxy.AddEmployee(intern);

            EmployeeService.Employee internOut 
= proxy.GetEmployee();
            Console.Write(
"The Employee Name:{0}\nAge:{1}\n",
                internOut.Name,
                internOut.Age
                );
            Console.Read();
        }
    }
}

运行后: 

     ServiceKnownType特性也可以表示在数据契约的类上,那么就会应用到整个数据契约中操作上,如:

          [ServiceContract]

          [ServiceDataContract(typeof(HenllyeeDataContract.Intern))]

          public interface IEmployeeManage{...}

     那么IEmployeeManage服务契约跟其所有的操作都可以接受Intern这个子类.

已知类型与接口

     数据契约DataContract只能标识在class 或者struct上,但是数据契约的基类可以是接口,但是我们在服务契约的时候要去用ServiceKnownType特性去指定确切的数据类型。如:

     interface IEmployee{...}

     [DataContract]

     class Intern:IEmployee{...}

服务契约中:

     [ServiceContract]

     [ServiceKnownType(typeof(Intern))]

     interface IEmployeeManage

     {

          [OperationContract]

          void AdddEmployee(IEmployee employee);

     }

要注意的一点就是我们不能把KnownType特性应用到基接口上,因为客服端导出的元数据是不能包含接口本身的。

[代码下载]

作者:Henllyee Cui
出处: http://henllyee.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明。

转载于:https://www.cnblogs.com/Henllyee/archive/2008/08/26/1276995.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/381582.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

hdu 3094——A tree game

题意&#xff1a; 一颗树&#xff0c;然后两个操作&#xff0c;一是删除一条边&#xff0c;二是移除不与根相连的部分。 思路&#xff1a; 树上博弈的基础题目。 code&#xff1a; #include <bits/stdc.h> using namespace std;const int N1e55; std::vector<int…

win10必须禁用的服务_7寸屏的迷你电脑,就算是8GB运行内存,也必须关闭的系统选项...

现在的电脑&#xff0c;基本上都安装的是Win10系统了&#xff0c;7寸屏的迷你笔记本电脑GPD Pocket 2琥珀黑版也不例外&#xff0c;GPD Pocket 2采用的是赛扬双核3965y处理器&#xff0c;8G运行内存&#xff0c;处理办公应用可以说是游刃有余&#xff0c;但是Win10系统有一些选…

hdu 3590——PP and QQ

题意&#xff1a; 有多颗树&#xff0c;然后树上删边游戏&#xff0c;最后一个删的人输。 思路&#xff1a; 其实就是树上删边游戏和anti-sg结合嘛。 对于树上删边&#xff1a; 1. 叶子节点的sg为0 2. 中间节点的sg为所有儿子节点的sg1的异或和 对于anti-sg&#xff1a;…

iTunes只能装C盘吗_电脑技巧分享:安装win10系统时系统盘C盘分区多大空间适合?...

我们在使用电脑时为了对电脑文件的方便管理&#xff0c;往往会对电脑进行分区&#xff0c;比如C&#xff0c;D&#xff0c;E&#xff0c;F盘等&#xff0c;其中C盘默认为系统盘&#xff0c;用于存储操作系统的重要文件&#xff0c;而C盘的分区大小也是许多朋友在安装操作系统时…

上海梵科信息科技有限公司

1. a5, b(a)(a)(a), printf("%d",b); 答案&#xff1a;19 2. 表students&#xff0c;有id, classid, name, score。 班级为4的所有学生&#xff1f; 答案&#xff1a;select * from students where classid4 每个班级的学生总数&#xff1f; 答案&#xff1a;select …

博弈论探讨及题目总结

转载自爱神博客:http://blog.csdn.net/acm_cxlove/article/details/7854526 首先当然要献上一些非常好的学习资料&#xff1a; 基础博弈的小结&#xff1a;http://blog.csdn.net/acm_cxlove/article/details/7854530 经典翻硬币游戏小结&#xff1a;http://blog.csdn.net/acm…

python36安装numpy_安装numpy

为了运行机器学习书上的实例&#xff0c;安装numpy.照着网上教程安装的&#xff0c;网上教程 1&#xff09;下载numpy包 自己的是python3.5, 64位操作系统&#xff0c;所以选择numpy-1.11.2mkl-cp35-cp35m-win-amd64.whl 2&#xff09;安装numpy 将下载的包拷贝到python安装目录…

WCF Testing Tool(转)

原文:http://jayce.clearviewtickets.info/wcftestingtool.html best video: wcf testing tool IIS7 Admin Pack Offers Built In Performance Analysis Reports Are you web developer building high traffic web site? Are you performance engineer that lives and breath…

hdu 5299——Circles Game

题意: 给定n个嵌套的圆&#xff0c;每次可以删除圆以及该圆包含的所有圆&#xff0c;不能删除者输。 思路&#xff1a; 把每个圆看成一个点&#xff0c;把圆的包含关系看成一条单向边&#xff0c;那么就化成了一棵树。 然后就是裸的树上删边游戏模型了。 对于树上删边游戏…

python制作简单动画_如何使用python制作简单的动画?

Python真的是无穷的好用&#xff0c;涉及内容非常广泛&#xff0c;比如接下来给大家介绍的制作动画&#xff0c;就可以利用python实现&#xff0c;相信小伙伴们听到这些内容肯定是非常感兴趣的&#xff0c;至于怎么去实现&#xff1f;大家想不想了解呢&#xff1f;下面小编就给…

asp.net 时间显示格式

asp.net里获取当前时间,并输出需要格式2007年12月08日 星期六 23:13;asp.net里获取当前时间&#xff0c;并字符串格式化转换2007-12-03 00:051.string strTime DateTime.Now.ToLongTimeString(); --------------------------------------------------------------------------…

clickhouse语句_篇四|ClickHouse的可视化界面与集群状态监控

介绍 tabix支持通过浏览器直接连接 ClickHouse&#xff0c;不需要安装其他软件&#xff0c;就可以访问ClickHouse&#xff0c;具有以下特点&#xff1a;⾼亮语法的编辑器。⾃动命令补全。查询命令执⾏的图形分析⼯具。配⾊⽅案选项。除此之外&#xff0c;还可以使用DBeaver连接…

python集合应用场景_python 集合的应用

应用场景 磁盘资产采集信息&#xff0c;与数据库中的磁盘信息需要进行对比&#xff0c;再资产入库&#xff0c;对于采集的多余的插巢属于新增的磁盘&#xff0c;对于相同的插巢可能是磁盘容量变更&#xff0c;对于数据库中有但是采集信息中没有的插巢是资产中删除的磁盘。 原始…

Codeforces Round #381 (Div. 2) Codeforce_740

A. Alyona and copybooks 水题&#xff0c;让求满足条件的最小花费&#xff0c;注意组合可能是多个即可。 #include <bits/stdc.h> using namespace std;typedef long long ll;int main(int argc, char const *argv[]) {ll n,a,b,c;cin>>n>>a>>b>…

mootools框架【十】-mootools深层探讨

mootools【十】- window的扩展及多彩世界 一. Mootools 框架对 Window的扩展: 浏览器的window对象本身就提供了我们很多的对浏览器本身属性的获取或设置的方法&#xff0c;但是我们也知道&#xff0c;由于各大浏览器之间对标准的实现不统一&#xff0c;导致很多方法功能上有所…

apache为什么更适合处理动态请求_[适合初中级Java程序员修炼手册从0搭建整个Web项目](一)...

前言文本已收录至我的GitHub仓库&#xff0c;欢迎Star&#xff1a;https://github.com/bin392328206种一棵树最好的时间是十年前&#xff0c;其次是现在six-finger-web一个Web后端框架的轮子从处理Http请求【基于Netty的请求级Web服务器】 到mvc【接口封装转发)】&#xff0c;再…

python如何自动缩进_Python缩进

缩进出现问题&#xff0c;运行不出来。 正确代码如下&#xff1a;1 defbinary_search(list, item):2 low 03 high len(list)-1 4 5 while low <high:6 mid (low high)7 guess list[mid]8 if guess item:9 returnmid10 if guess >item:11 high mid-1 12 else:13 low m…

差分约束系统详解

一直不知道差分约束是什么类型题目&#xff0c;最近在写最短路问题就顺带看了下&#xff0c;原来就是给出一些形如x-y<b不等式的约束&#xff0c;问你是否满足有解的问题 好神奇的是这类问题竟然可以转换成图论里的最短路径问题&#xff0c;下面开始详细介绍下 比如给出三…

美开发思想头盔让士兵通过脑电波交流

http://www.sina.com.cn 2008年09月18日 08:08 新浪科技新浪科技讯 北京时间9月18日消息&#xff0c;据美国《时代》周刊报道&#xff0c;在20世纪的战场上&#xff0c;爆炸声震耳欲聋&#xff0c;军官们要下达命令&#xff0c;或者士兵之间互相交流看法&#xff0c;只能大声…

flink source 同步_大数据面试题-Flink

1、Flink 的 抽象层次有几种Stateful stream processingCore APITableSQL 2、Window 类型(1)TimeWindowTumbling Window(滚动窗口)Sliding Window(滑动窗口)Session Window(会话窗口)Global Window(全局窗口)(2)countWindow(3)自定义window 3、Time 类型事件时间、注入时间和Pr…