1

我试图弄清楚如何提供自定义错误消息或至少为我的 Web API 的 XML 帖子指定元素名称。目前,我得到的模型状态错误是

XML 文档 (2, 4) 中存在错误。

此错误的内部异常提供了更多信息:

字符串“false fds”不是有效的布尔值。

我希望能够向用户返回更具体的内容,说明包含无效值的元素,而不是让他们搜索他们的 XML 以确定该值存在的位置。

这是我发布的 XML:

<?xml version='1.0'?>
<checkin>
    <checkinType>1</checkinType>
    <server>server1</server>
    <notes>New Checkin</notes>
    <productCheckins>
        <ihsCheckin>
            <vendor>IBM</vendor>
            <make>HTTP Server</make>
            <model></model>
            <version>8.5.5.0</version>
            <installLocation>/opt/IBM</installLocation>
            <is64Bit>false fds</is64Bit>
        </ihsCheckin>
</productCheckins>
</checkin>

这是我要转换为的类:

[XmlRoot("checkin")]
public class Checkin
{
    [XmlElement("checkinTime")]
    public DateTime CheckinTime { get; set; }
    [XmlElement("checkType")]
    public int CheckinType { get; set; }
    [XmlElement("notes")]
    public string Notes { get; set; }
    [XmlElement("server")]
    public string Server { get; set; }
    [XmlArray("productCheckins")]
    [XmlArrayItem("wasCheckin", typeof(WASCheckin))]
    [XmlArrayItem("ihsCheckin", typeof(IHSCheckin))]
    public List<ProductCheckin> ProductCheckins { get; set; }
}

public class ProductCheckin
{
    [XmlElement("vendor")]
    public string Vendor { get; set; }
    [XmlElement("make")]
    public string Make { get; set; }
    [XmlElement("model")]
    public string Model { get; set; }
    [XmlElement("version")]
    public string Version { get; set; }
    [XmlElement("installLocation")]
    public string InstallLocation { get; set; }
    [XmlElement("is64Bit")]
    public bool Is64Bit { get; set; }
}

基本上,我只想说,该错误与 is64Bit 元素有关,但我还没有看到一种方法可以做到这一点,但还没有手动解析 XML。

4

1 回答 1

4

我不得不同意它:

<is64Bit>false fds</is64Bit>

不是以下的有效值:

[XmlElement("is64Bit")]
public bool Is64Bit { get; set; }

您可以将其视为string

[XmlElement("is64Bit")]
public string Is64Bit { get; set; }

之后单独处理。

于 2013-09-25T13:57:27.507 回答