WCFメソッドのリターンとして次のようなac#クラスがあります。
[Serializable]
[XmlRoot("OutputItem")]
public class MyItem
{
[XmlElement("ItemName")]
public string NodeName { get; set; }
[XmlArray("Fields"), XmlArrayItem(ElementName = "Field", Type = typeof(MyItemField))]
public List<MyItemField> Fields { get; set; }
}
私のWCFメソッドは次のとおりです。
public MyItem GetItemXML(string id)
{
MyItem mi = new MyItem();
//do some stuff to populate mi
return mi;
}
これのXML出力は次のようになると思います。
<xml version="1.0" encoding="utf-16"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<GetItemXMLResponse xmlns="http://www.here.com/XML/ItemService.xsd">
<GetItemXMLResult>
<OutputItem>
<ItemName>FR</ItemName>
<Fields>
......
</Fields>
</OutputItem>
</GetItemXMLResult>
</GetItemXMLResponse>
</s:Body>
</s:Envelope>
ただし、出力される出力は次のとおりです-<OutputItem>
上部にディレクティブがありません:
<xml version="1.0" encoding="utf-16"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<GetItemXMLResponse xmlns="http://www.here.com/XML/ItemService.xsd">
<GetItemXMLResult>
<ItemName>FR</ItemName>
<Fields>
......
</Fields>
</GetItemXMLResult>
</GetItemXMLResponse>
</s:Body>
</s:Envelope>
私は何が欠けていますか?