0

我有这样的 ac# 类作为我的 WCF 方法的返回:

[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>

我错过了什么?

4

2 回答 2

0
// The Model Object

[Serializable]
[XmlRoot("OutputItem")]
[DataContractAttribute]
public class MyObject
{
    [XmlElement("ItemName")]
    [DataMemberAttribute] 
    public string Name { get; set; }

    [XmlArray("DummyItems")]
    [XmlArrayItem("DummyItem", typeof(MyItemField))]
    public List<Fields> DummyItem { get; set; }
}



// The Class that implement the contract
[DataContract]
public class ConsumptionService : IAnyContract
{
    public MyObject GetItemXML(string id)
    {
       MyObject mo = new MyObject();
       //do some stuff to populate mi
       MyObject mo;   
    }
 }
于 2012-09-20T20:40:35.210 回答
0

如果我没记错的话,这一切都取决于您的 [OperationContract] 是如何定义的。您可能必须使用消息契约来获得您想要的行为。看看http://msdn.microsoft.com/en-us/library/ms730255.aspx

于 2012-09-20T16:06:06.867 回答