0
Dim soapEnvelope As XElement = New XElement(soap + "Envelope",
                                        New XAttribute(XNamespace.Xmlns + "soap", soap.NamespaceName),
                                        New XAttribute(soap + "encodingStyle", "http://www.w3.org/2001/12/soap-encoding"),
                                        New XElement(soap + "Body",
                                        New XAttribute("xmlns", "http://www.test.com"),
                                        New XElement("Open",
                                        New XElement("Data",
                                        New XElement("Desc", _dData.Desc),
                                        New XElement("Num", _dData.Num),
                                        New XElement("Ref", _dData.Ref),
                                        New XElement("Mnn", _dData.Mnn),
                                        New XElement("Ftp", _dData.Ftp))
                                  )))

下面给出了这个输出:

<soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
  <soap:Body xmlns="http://www.test.com">
    <Open xmlns="">
      <Data>
        <Desc>testApp</Desc>
        <Num>1</Num>
        <Ref></Ref>
        <Mnn>116</Mnn>
        <Ftp></Ftp>
      </Data>
    </Open>
  </soap:Body>
</soap:Envelope>

问题是为什么<Open>XElement 会自动获得一个xmlns="" 属性?

我想要相同的输出,但没有 XElement 的任何属性<Open>

任何帮助,将不胜感激。

4

2 回答 2

1

您需要在其命名空间中创建每个元素:

XNamespace t = "http://www.test.com";
                                      New XElement(t + "Open",
                                        New XElement(t + "Data",
                                        New XElement(t + "Desc", _dData.Desc),
                                        New XElement(t + "Num", _dData.Num),
                                        New XElement(t + "Ref", _dData.Ref),
                                        New XElement(t + "Mnn", _dData.Mnn),
                                        New XElement(t + "Ftp", _dData.Ftp))
于 2014-09-30T08:07:21.710 回答
1

这是因为 XML在元素中xmlns="..."声明了默认命名空间 ( ) 。<Open>在 XML 中,所有后代元素都自动从祖先继承默认命名空间,除非另有明确设置(fe 通过使用指向不同命名空间的前缀,或通过在后代级别声明不同的默认命名空间)。

使用您尝试过的代码,其后代<Body>未设置在命名空间中。您需要使用 using 将<Open>元素的后代设置在相同的默认命名空间中XNamespace,例如:

XNamespace ns = "http://www.test.com"
Dim soapEnvelope As XElement = New XElement(soap + "Envelope",
                                        New XAttribute(XNamespace.Xmlns + "soap", soap.NamespaceName),
                                        New XAttribute(soap + "encodingStyle", "http://www.w3.org/2001/12/soap-encoding"),
                                        New XElement(soap + "Body",
                                        New XAttribute("xmlns", "http://www.test.com"),
                                        New XElement(ns+"Open",
                                        New XElement(ns+"Data",
                                        New XElement(ns+"Desc", _dData.Desc),
                                        New XElement(ns+"Num", _dData.Num),
                                        New XElement(ns+"Ref", _dData.Ref),
                                        New XElement(ns+"Mnn", _dData.Mnn),
                                        New XElement(ns+"Ftp", _dData.Ftp))
                                  )))
于 2014-09-30T08:10:39.107 回答