0

如果我做这样的事情:

System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlElement e = xmlDoc.CreateElement("ShipmentReceiptNotification");
e.SetAttribute("xmlns", "urn:rosettanet:specification:interchange:ShipmentReceiptNotification:xsd:schema:02.02");
e.SetAttribute("xmlns:ssdh", "urn:rosettanet:specification:domain:Procurement:AccountClassification:xsd:codelist:01.03");
XmlNode ShipmentReceiptNotification0Node = e;

ShipmentReceiptNotification0Node.InnerText = String.Empty;
xmlDoc.AppendChild(ShipmentReceiptNotification0Node);
XmlNode DocumentHeader1Node = xmlDoc.CreateElement("ssdh:DocumentHeader");
ShipmentReceiptNotification0Node.AppendChild(DocumentHeader1Node);

会导致第二个节点的前缀ssdh不显示,只DocumentHeader显示。我该如何解决这个问题?

4

1 回答 1

1

您需要像这样创建它:

XmlNode DocumentHeader1Node = xmlDoc.CreateElement("ssdh", "DocumentHeader", "urn:rosettanet:specification:domain:Procurement:AccountClassification:xsd:codelist:01.03");

关键是XmlDocument需要知道哪个命名空间前缀(第一个参数)对应哪个命名空间 URI(第三个参数)。有点违反直觉,但这就是它的工作方式。

另请注意,该行ShipmentReceiptNotification0Node.InnerText = String.Empty;是无用的;省略它是安全的,该元素默认为空。

于 2013-03-08T18:51:46.837 回答