可以';t序列化自定义类型

本文关键字:序列化 自定义 类型 可以 | 更新日期: 2023-09-27 18:21:54

我正在尝试扩展hr xml类型ProcessOrganizationChartDataAreaType中的UserArea我定义了从UserAreaType1 继承的类型OrganizationChartUserArea

[XmlType]
    public class OrganizationChartUserArea :UserAreaType1
    {
        [XmlElement]
        public HcrChoiceSet DefaultChoicesSet { get; set; }
        [XmlElement]
        public HcrChoiceSet CurrentChoicesSet { get; set; }
    }

这也使用自定义类型的HcrChoiceSet

 [XmlType]
    public class HcrChoiceSet
    {
        [XmlElement]
        public FreeFormEffectivePeriodType OngoingMeasurementPeriod { get; set; }
        [XmlElement]
        public FreeFormEffectivePeriodType OngoingStabilityPeriod { get; set; }
        [XmlElement]
        public FreeFormEffectivePeriodType OngoingAdministrationPeriod { get; set; }
    }

当我尝试对这个扩展类的实例进行烧录时

 [TestMethod]
        public void SerializeOrganizationChart()
        {
            var organizationSerializer = new XmlSerializer(typeof(ProcessOrganizationChartType));
            var organizationWriter = new XmlTextWriter("C:''ProcessOrganizationChart.xml", new UTF8Encoding());
            var namespaces = new XmlSerializerNamespaces();
            namespaces.Add("", "http://www.hr-xml.org/3");
            namespaces.Add("oa", "http://www.openapplications.org/oagis/9");
            namespaces.Add("xsi", "http://www.w3.org/2001/XMLSchema-instance");
            namespaces.Add("schemaLocation", "http://www.hr-xml.org/3  ../Developer/BODs/ProcessOrganizationChart.xsd");
            organizationSerializer.Serialize(organizationWriter, processOrganizationChart, namespaces);
            Assert.Inconclusive("This is not a true unit test.");
        }

我在说时出错

试验方法SomeNamespace.Tests.OrganizationChartTest.SerializeOrganizationChart引发异常:System.InvalidOperationException:出现错误生成XML文档。--->System.InvalidOperationException:类型SomeNamespace.Tests.OrganizationChartUserArea不是预期。使用XmlInclude或SoapInclude属性指定类型它们不是静态已知的。

我该如何解决此问题?

 [TestInitialize]
        public void InitTest()
        {
            processOrganizationChart = new ProcessOrganizationChartType
                {
                    ApplicationArea = new ApplicationAreaType
                        {
                            CreationDateTime = DateTime.Now.ToString("yyyy-MM-dd"),
                            BODID = new IdentifierType1 {Value = Guid.NewGuid().ToString()},
                        },
                    DataArea = new ProcessOrganizationChartDataAreaType
                        {
                            Process = new ProcessType
                                {
                                    ActionCriteria = new[]
                                        {
                                            new ActionCriteriaType
                                                {
                                                    ActionExpression = new[]
                                                        {
                                                            new ActionExpressionType
                                                                {
                                                                    actionCode = "Add",
                                                                    Value =
                                                                        "/ProcessOrganizationChart/DataArea/OrganizationChart"
                                                                }
                                                        }
                                                }
                                        }
                                },
                            OrganizationChart = new[]
                                {
                                    new OrganizationChartType
                                        {
                                            OrganizationUnit = new[]
                                                {
                                                    new OrgChartOrganizationUnitType
                                                        {
                                                            validFrom = "2013-01-01",
                                                            OrganizationUnitID = new IdentifierType2
                                                                {
                                                                    Value = "901"
                                                                },
                                                            ParentOrganizationUnit = new ParentOrganizationUnitType
                                                                {
                                                                    OrganizationUnitID = new IdentifierType2
                                                                        {
                                                                            Value = "900"
                                                                        }
                                                                },
                                                            RelatedOrganizationUnit = new[]
                                                                {
                                                                    new RelatedOrganizationUnitType
                                                                        {
                                                                            OrganizationUnitID = new IdentifierType2
                                                                                {
                                                                                    Value = "900"
                                                                                }
                                                                        }
                                                                },
                                                            OrganizationUnitName = new OrganizationNameType
                                                                {
                                                                    languageID = "en-US",
                                                                    Value = "SomeCompany"
                                                                },
                                                            TypeCode = new[]
                                                                {
                                                                    new CodeType1
                                                                        {
                                                                            listID = "ClientStatus",
                                                                            Value = "Active"
                                                                        },
                                                                    new CodeType1
                                                                        {
                                                                            listID = "ALEIndicator",
                                                                            Value = "True"
                                                                        },
                                                                    new CodeType1
                                                                        {
                                                                            listID = "EducationIndicator",
                                                                            Value = "False"
                                                                        },
                                                                    new CodeType1
                                                                        {
                                                                            listID = "MedicalBenefitsOffered",
                                                                            Value = "False",
                                                                        },
                                                                    new CodeType1
                                                                        {
                                                                            listID = "MedicalBenefitsStatusDate",
                                                                            Value = "2013-01-01"
                                                                        }
                                                                }
                                                            ,
                                                            UserArea = new OrganizationChartUserArea
                                                                {
                                                                    DefaultChoicesSet = new HcrChoiceSet
                                                                        {
                                                                            OngoingAdministrationPeriod
                                                                                = new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-31"
                                                                                            },
                                                                                        Duration = "P1M"
                                                                                    },
                                                                            OngoingMeasurementPeriod =
                                                                                new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2014-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2014-12-31"
                                                                                            },
                                                                                        Duration = "P12M"
                                                                                    },
                                                                            OngoingStabilityPeriod =
                                                                                new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-12-31"
                                                                                            },
                                                                                        Duration = "P12M"
                                                                                    }
                                                                        },
                                                                    CurrentChoicesSet = new HcrChoiceSet
                                                                        {
                                                                            OngoingAdministrationPeriod
                                                                                = new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-31"
                                                                                            }
                                                                                    },
                                                                            OngoingMeasurementPeriod =
                                                                                new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2014-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2014-12-31"
                                                                                            }
                                                                                    },
                                                                            OngoingStabilityPeriod =
                                                                                new FreeFormEffectivePeriodType
                                                                                    {
                                                                                        StartDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-01-01"
                                                                                            },
                                                                                        EndDate = new FreeFormDateType
                                                                                            {
                                                                                                FormattedDateTime =
                                                                                                    "2015-12-31"
                                                                                            }
                                                                                    }
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
                                }
                        }
                };
        }

组织结构图单位类型

namespace HrXml.v3_2_1.Types.HrXml
{
    [Serializable]
    [DebuggerStepThrough]
    [DesignerCategory("code")]
    [GeneratedCode("xsd", "4.0.30319.17929")]
    [XmlRoot("OrganizationUnit", Namespace = "http://www.hr-xml.org/3", IsNullable = false)]
    [XmlType(Namespace = "http://www.hr-xml.org/3")]
    public class OrgChartOrganizationUnitType
    {
        public OrgChartOrganizationUnitType();
        [XmlElement("AdditionalItem")]
        public AdditionalItemType[] AdditionalItem { get; set; }
        [XmlElement("MemberPosition")]
        public MemberPositionType[] MemberPosition { get; set; }
        public CodeType1 OrganizationLevelCode { get; set; }
        public IdentifierType2 OrganizationUnitID { get; set; }
        public TextType1 OrganizationUnitName { get; set; }
        public ParentOrganizationUnitType ParentOrganizationUnit { get; set; }
        [XmlElement("RelatedOrganizationUnit")]
        public RelatedOrganizationUnitType[] RelatedOrganizationUnit { get; set; }
        [XmlIgnore]
        public AdditionalItemType SingleAdditionalItem { get; set; }
        [XmlIgnore]
        public MemberPositionType SingleMemberPosition { get; set; }
        [XmlIgnore]
        public RelatedOrganizationUnitType SingleRelatedOrganizationUnit { get; set; }
        [XmlIgnore]
        public CodeType1 SingleTypeCode { get; set; }
        [XmlElement("TypeCode")]
        public CodeType1[] TypeCode { get; set; }
        public UserAreaType1 UserArea { get; set; }
        [XmlAttribute]
        public string validFrom { get; set; }
        [XmlAttribute]
        public string validTo { get; set; }
    }
}

可以';t序列化自定义类型

由于您无权访问该类来修改和添加XmlInclude属性,因此请通知XmlSerializer其他已知类型,以便使用new XmlSerializer(Type, Type[])构造函数重载进行序列化:

var organizationSerializer = new XmlSerializer(typeof(ProcessOrganizationChartType), new[]{typeof(OrganizationChartUserArea)});

这指示XmlSerializer期望并生成自定义子类的序列化信息。通常,XmlSerializer只查看在编译时对序列化的类定义的类型。在这种情况下,OrgChartOrganizationUnitType指定了UserAreaType1的类型,因此只需要特定的类,并生成序列化信息。通过告诉XmlSerializer期望OrganizationChartUserArea,当它被传递该类型的对象时,它有望不会失败。

在基类中使用XmlInclude属性

[XmlInclude(typeof(OrganizationChartUserArea))]
class public UserAreaType1
{
 [...]