除非与类的命名空间不同,否则命名空间不会附加到WCF中的bool

时间:2013-03-22 22:33:27

标签: c# .net xml wcf soap

我有一个我在WCF中用于​​发送SOAP响应的数据类型。它看起来像这样:

<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">
      <start-call-recording-response xmlns="http://foobar">
         <response>true</response>
      </start-call-recording-response>
   </s:Body>
</s:Envelope>

问题是命名空间(http://foobar)没有出现在元素中。也就是说,除非我将XmlElementAttibute的Namespace更改为与父类的XmlRootAttribute的Namespace不同的名称空间。以下是start-call-recording-response的类:

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.18033")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(TypeName = "StartcallrecordingresponseType")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://foobar", ElementName = "start-call-recording-responseType")]
public partial class StartcallrecordingresponseType
{
    [System.ServiceModel.MessageBodyMemberAttribute(Namespace = "http://foobar")]
    private bool responseField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://foobar", ElementName = "response", IsNullable = false)]
    public bool Response
    {
        get
        {
            return this.responseField;
        }
        set
        {
            this.responseField = value;
        }
    }
}

如果我将响应上面的XmlElementAttribute的命名空间更改为包含类的命名空间之外的其他内容,它将出现在SOAP信封中。如果它们是相同的,它就不会出现。尝试了XmlTypeAttributes,XmlRootAttributes和XmlElementAttributes的许多变体。

1 个答案:

答案 0 :(得分:1)

这是对的。请参阅namespace spec

  

默认命名空间声明的范围从它出现的start-tag的开头延伸到相应的end-tag的末尾,不包括任何内部默认命名空间声明的范围。对于空标记,范围是标记本身。

因此,响应元素从其start-call-recording-response parent继承foobar名称空间。