zoukankan      html  css  js  c++  java
  • Reprint: Serialization

    Having just recently ran into some major serialization issues I’m going to list some of the errors and pitfalls that I ran into.

    Some of the errors encountered

    Error one
    “<ClassName> is inaccessible due to its protection level. Only public types can be processed.”

    It means that the Class you are trying to serialize is not marked as public and hence the serializor can not access it. Depending on the Class scope this may not be a problem e.g. the serialization code and the class are both in the same scope.

    Error Two
    “Cannot serialize member <Property Name> of type <Type> because it is an interface.”

    It means that one of the members in your class is defined as an interface. An interface can never be serialized since the serializor will not know which instance of the interface to use.

    Error Three
    The type <Type> was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.

    This error is caused when trying to serialize an inherited class

    E.g. the following example will cause this problem

    1. public class Test  
    2. {  
    3.   private string _Field = "";  
    4.   public string Field  
    5.   {  
    6.     get { return _Field; }  
    7.     set { _Field = value; }  
    8.   }  
    9. }  
    10.   
    11. public class TestInherited : Test  
    12. {  
    13. }  
    14.   
    15. public class Container  
    16. {  
    17.   private Test ivField;  
    18.   public Test Field  
    19.   {  
    20.     get { return _Field; }  
    21.     set { _Field = value; }  
    22.   }  
    23. }  
    24.   
    25. Container _Test = new Container();  
    26. _Test.Field = new TestInherited();  

    The issue is that the Container.Field is defined as Test but instantiated as TestInherited. Their are two solutions for this problem
    1) Add the attribute [XmlInclude(typeof(TestInherited))] to the Test class
    2) new XmlSerializer(typeof(Container), new Type[] { typeof(TestInherited) });

    The second method is preferred. With the first method you have to decorate your base classes to which you may not always have access to, secondly the base class should not be aware of any class that inherits from it.

    Note:特别的,当一个对象中的属性为基类或者object类型时,他的依赖注入的类型(即运行时类型)必须明确使用 XmlInclude属性标明序列化的类型,否则序列化会出错。

    转载自 http://www.johnsoer.com/blog/?p=125

  • 相关阅读:
    css盒子模型
    怎么查看浏览器内核以及浏览器版本
    matlab 读取文件(mat)存储为json文件
    js的闭包
    听别人报告
    关于windows下 python3安装 cython的说明
    python某个module使用了相对引用,同时其__name__又是__main__导致的错误
    python编程指南
    javacc在stanfordnlp中的应用
    hystrix熔断机制修改配置
  • 原文地址:https://www.cnblogs.com/anthonyBlog/p/4346319.html
Copyright © 2011-2022 走看看