遗忘海岸

江湖程序员 -Feiph(LM战士)

导航

一个WCF 数据序列化问题

   public  class EMMPBaseMsg
    {
       
        public String Data { get; set; }
    
        public DateTime AddTime { get; set; }
     
        public long Id { get; set; }
       
        public String HandleType { get; set; }
    }

     public class EMMPResponse
    {
         public EMMPResponse()
         {
             Model = new List<EMMPResponseMsg>();
         }
         public int Code { get; set; }
         public String Msg { get; set; }
         public List<EMMPResponseMsg> Model
         {
             get;
             set;
         }
    }

     public class EMMPResponse
    {
         public EMMPResponse()
         {
             Model = new List<EMMPResponseMsg>();
         }
         public int Code { get; set; }
         public String Msg { get; set; }
       
         public List<EMMPResponseMsg> Model
         {
             get;
             set;
         }
    }

将上面EMMPResponse的 List<EMMPResponseMsg>改成 //将List<EMMPBaseMsg>后

用户调用WCF接口时返回的response中,

response.Model.Add(new EMMPResponseMsg(){}); 时 会报服务错误,基础链接被关闭

但是调试wcf接口实现代码时是正确的,因为错误发生在WCF基础框架序列化时

解决,就是按声明的类型往Model集合里添加该类型数据

 

WCF中不同两个定义完全一样的Info类(C,S两方),如果再不同的命名空间下(比方两个不同命名空间的dll文件中),那么序列化与反序列化时各属性会被设置成null

-同样命名空间不同程序集的可以(想来也是可以的,C,S双方就是不同的)

posted on 2017-02-04 16:15  遗忘海岸  阅读(190)  评论(0编辑  收藏  举报