1

XML(片段):

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetXMLResponse xmlns="http://sitecore.net/visual/">
<GetXMLResult>
<sitecore xmlns="">
<status>ok</status>

代码(片段):

XmlNamespaceManager nsManager = new XmlNamespaceManager(template.NameTable);
nsManager.AddNamespace("soap", "http://schemas.xmlsoap.org/soap/envelope/");
nsManager.PushScope();

XmlNode sitecoreRoot = template.SelectSingleNode("/soap:Envelope/soap:Body/*[namespace-uri()='http://sitecore.net/visual/' and local-name()='GetXMLResponse']", nsManager);

string status = sitecoreRoot.SelectSingleNode("/GetXMLResult/sitecore/status").Value;

sitecoreRoot 元素返回正确的节点。然而,获取状态的 XPath 始终返回 null,即使 siteCoreRoot.OuterXMl 属性显示该元素存在。

我唯一能想到的是这条线:

<sitecore xmlns="">

正在抛弃 XPath

TIA

4

2 回答 2

0

如果你只想要状态节点,你可以试试这个 xml 库和下面的 XPath。

XElement root = XElement.Load(file); // or .Parse(string)
XElement status = root.XPathElement("//status");

该库为您处理命名空间。

于 2012-12-10T19:46:42.293 回答
0
XmlNamespaceManager ns = new XmlNamespaceManager(cd.NameTable);
        ns.AddNamespace("sp", "http://schemas.xmlsoap.org/soap/envelope/");
        ns.AddNamespace("sc", "http://sitecore.net/visual/");
        XmlNode sitecoreRoot = cd.SelectSingleNode("//sp:Envelope/sp:Body/sc:GetXMLResponse/sc:GetXMLResult/sitecore/status", ns);
var status = sitecoreRoot.InnerText;

可以帮助你吗?

于 2012-12-10T19:25:21.903 回答