Web Api XML,如何设置编码,版本,xmlns:xsi和xsi:schemaLocation

时间:2012-10-28 12:52:11

标签: asp.net-mvc-4 asp.net-web-api xmlserializer xml-encoding

我正在使用asp.net MVC4 Web Api。

我已经设定:

Dim xml = GlobalConfiguration.Configuration.Formatters.XmlFormatter
xml.UseXmlSerializer = True

我创建了一个类,它指定了我需要的XML,这很有效。

我几乎在那里,但我不确定如何设置:

<?xml version="1.0" encoding="utf-8"?>

以及如何设置元素属性:

xmlns:xsi和xsi:schemaLocation

我可以使用属性设置吗?

1 个答案:

答案 0 :(得分:6)

这个答案延迟了一年,并针对WebAPI2进行了测试!

WebApiConfig

中启用XML声明
config.Formatters.XmlFormatter.WriterSettings.OmitXmlDeclaration = false;

然后添加schemaLocation属性或成员(我总是喜欢属性)

public class SampleData
{
    [XmlAttribute(AttributeName = "schemaLocation", Namespace = "http://www.w3.org/2001/XMLSchema-instance")]
    public string SchemaLocation { get; set; }

    //other properties
    public string Prop1 { get; set; }

    public SampleData()
    {
        SchemaLocation = "http://localhost/my.xsd";
    }
}

输出:

<?xml version="1.0" encoding="utf-8"?>
<TestModel 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://localhost/my.xsd">
    <Prop1>1</Prop1>
</TestModel>