我正在从表创建一个新的XDocument。我必须从XSD文档验证文档并且它一直失败,因为它在不应该的时候将xmlns =“”添加到其中一个元素。这是相关代码的一部分。
XNamespace xsi = "http://www.w3.org/2001/XMLSchema-instance";
XNamespace xmlns = "https://uidataexchange.org/schemas";
XElement EmployerTPASeparationResponse = null;
XElement EmployerTPASeparationResponseCollection = new XElement(xmlns + "EmployerTPASeparationResponseCollection", new XAttribute(XNamespace.Xmlns + "xsi", xsi), new XAttribute(xsi + "schemaLocation", "https://uidataexchange.org/schemas SeparationResponse.xsd"));
XDocument doc = new XDocument(
new XDeclaration("1.0", null, "yes"), EmployerTPASeparationResponseCollection);
//sample XElement populate Element from database
StateRequestRecordGUID = new XElement("StateRequestRecordGUID");
StateRequestRecordGUID.SetValue(rdr["StateRequestRecordGUID"].ToString());
//sample to add Elements to EmployerTPASeparationResponse
EmployerTPASeparationResponse = new XElement("EmployerTPASeparationResponse");
if (StateRequestRecordGUID != null)
{
EmployerTPASeparationResponse.Add(StateRequestRecordGUID);
}
//the part where I add the EmployerTPASeparationResponse collection to the parent
EmployerTPASeparationResponseCollection.Add(EmployerTPASeparationResponse);
上面的代码生成以下xml文件。
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<EmployerTPASeparationResponseCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://uidataexchange.org/schemas SeparationResponse.xsd" xmlns="https://uidataexchange.org/schemas">
<EmployerTPASeparationResponse xmlns="">
<StateRequestRecordGUID>94321098761987654321323456109883</StateRequestRecordGUID>
</EmployerTPASeparationResponse>
</EmployerTPASeparationResponseCollection>
注意元素EmployerTPASeparationResponse。它有一个空的xmlns属性。我想要发生的只是编写没有属性的EmployerTPASeparationResponse。
答案 0 :(得分:12)
您需要指定要添加的元素的命名空间。 e.g。
//sample XElement populate Element from database
StateRequestRecordGUID = new XElement(xmlns + "StateRequestRecordGUID");
和
//sample to add Elements to EmployerTPASeparationResponse
EmployerTPASeparationResponse = new XElement(xmlns + "EmployerTPASeparationResponse");
答案 1 :(得分:10)
添加时,您需要为XElement
指定名称空间,使其与XDocument
的名称空间相匹配。您可以按如下方式执行此操作:
XElement employerTPASeperationResponse =
new XElement(xmlns + "EmployerTPASeparationResponse");
答案 2 :(得分:3)
您必须为根元素创建 XNamespace ,然后在创建元素时,创建对象命名空间,如下所示:
xmlDoc = new XDocument();
xmlDoc.Declaration = new XDeclaration("1.0", "utf-8", null);
XNamespace pageDefinition = @"http://xmlns.oracle.com/adfm/uimodel";
XElement root = new XElement(pageDefinition + "pageDefinition", new XAttribute("Package", "oracle.webcenter.portalapp.pages"));
xmlDoc.Add(root);
以上代码生成以下xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" Package="oracle.webcenter.portalapp.pages"/>
答案 3 :(得分:0)
当您创建所有其他元素(EmployerTPASeparationResponse和StateRequestRecordGUID)时,您应该在name元素中包含命名空间(与创建EmployerTPASeparationResponseCollection时的方式相同。