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="
&#34;属性?
我想要相同的输出,但没有XElement <Open>
任何帮助都将不胜感激。
答案 0 :(得分: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))
答案 1 :(得分:1)
这是因为XML具有在xmlns="..."
元素处声明的默认命名空间(<Open>
)。在XML中,除非另外显式设置(f.e通过使用指向不同命名空间的前缀,或通过在后代级别声明不同的默认命名空间),所有后代元素都会自动从祖先继承默认命名空间。
使用您尝试过的代码,<Body>
的后代没有设置名称空间。您需要使用<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))
)))