0

我正在尝试将 OFX xml 文档反序列化为其对象(我将 XSD 转换为类)

这是下面的代码。

  XmlSerializer xmlSerializer = new XmlSerializer(typeof(OFX));

        using (var reader = xmlDoc.Root.CreateReader())
        {
            return (OFXRequest)xmlSerializer.Deserialize(reader);
        }

更新 xml XmlSerializer 失败并出现错误

xml文档:

<?OFX OFXHEADER=200  VERSION=211  SECURITY="NONE"  OLDFILEUID="NONE"  NEWFILEUID="NONE"  ?>
<OFX>
  <SIGNONMSGSRQV1>
    <SONRQ>
      <DTCLIENT>20120202</DTCLIENT>
      <USERID>USER-ID</USERID>
      <USERPASS>PASSWORD</USERPASS>
      <LANGUAGE>ENG</LANGUAGE>
      <FI>
        <ORG>Organisation</ORG>
        <FID>OrganisationID</FID>
      </FI>
      <APPID>YOD</APPID>
      <APPVER>1</APPVER>
    </SONRQ>
  </SIGNONMSGSRQV1>
  <SIGNUPMSGSRQV1>
    <ACCTINFOTRNRQ>
      <TRNUID>456579841231</TRNUID>
      <ACCTINFORQ>
        <DTACCTUP>2013101209000.000[2:GMT]</DTACCTUP>
      </ACCTINFORQ>
    </ACCTINFOTRNRQ>
  </SIGNUPMSGSRQV1>
</OFX>

错误:

无法生成临时类(结果=1)。错误 CS0030:无法将类型“System.DateTime”转换为“字符串”错误 CS0030:无法将类型“System.DateTime”转换为“字符串”错误 CS0030:无法将类型“System.DateTime”转换为“字符串”

我需要知道的是如何在反序列化时找到失败的代码的确切位置?没有内部异常等。

4

1 回答 1

1

猜测一下,您希望它对这样的事情做什么感到困惑

[XmlElement(Type=typeof(string),ElementName="TAXYEAR",IsNullable=false,DataType="gYear")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public TAXYEARCollection __TAXYEARCollection;

清楚地说“将值视为字符串”,如下:

[Serializable]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public class TAXYEARCollection : ArrayList
{
    public DateTime Add(DateTime obj)
    {
        base.Add(obj);
        return obj;
    }

    public DateTime Add()
    {
        return Add(new DateTime());
    }

    public void Insert(int index, DateTime obj)
    {
        base.Insert(index, obj);
    }

    public void Remove(DateTime obj)
    {
        base.Remove(obj);
    }

    new public DateTime this[int index]
    {
        get { return (DateTime) base[index]; }
        set { base[index] = value; }
    }
}

这显然希望 values 是 a DateTime

于 2013-10-28T09:27:12.970 回答