无法从XRDS文档中解析XML

时间:2012-02-27 05:00:49

标签: c# xml xmldocument

如何解析下面的XML?我想可能是我的代码无法理解的起点。我已尝试过以下两种技术,但它不起作用。

Response.Write(xmlDoc.SelectSingleNode("/xrds/XRD").InnerXml);  //Parse it - failed
Response.Write(xmlDoc.SelectSingleNode("/XRD").InnerXml);       //failed

System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
string gtest = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><xrds:XRDS xmlns:xrds=\"xri://$xrds\" xmlns=\"xri://$xrd*($v*2.0)\"><XRD><Service priority=\"0\"><Type>http://specs.openid.net/auth/2.0/server</Type><Type>http://openid.net/sreg/1.0</Type> <URI>https://www.mydomain.com/login</URI></Service></XRD></xrds:XRDS>";
xmlDoc.LoadXml(gtest);//Load data into the xml.
Response.Write(xmlDoc.SelectSingleNode("/xrds/XRD").InnerXml);//Parse XML

2 个答案:

答案 0 :(得分:0)

您可以使用以下任何一种 -

xmlDoc.GetElementsByTagName("XRD")[0].InnerXml

xmlDoc.DocumentElement.ChildNodes[0].InnerXml

但是如果你有多个XRD节点,那么你可以迭代它们并解析它们。

        XmlDocument xmlDoc = new XmlDocument();
        string gtest = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><xrds:XRDS xmlns:xrds=\"xri://$xrds\" xmlns=\"xri://$xrd*($v*2.0)\"><XRD><Service priority=\"0\"><Type>http://specs.openid.net/auth/2.0/server</Type><Type>http://openid.net/sreg/1.0</Type> <URI>https://www.mydomain.com/login</URI></Service></XRD></xrds:XRDS>";
        xmlDoc.LoadXml(gtest);//Load data into the xml.
        XmlNodeList nodeList = xmlDoc.GetElementsByTagName("XRD");
        foreach (XmlNode node in nodeList)
        {
            Console.Write(node.InnerXml);
        }

答案 1 :(得分:0)

你需要告诉它有关命名空间的信息,要使用像选择单节点这样的XPath。

xrds:XRDS不是xrds,并且要使用用命名空间限定的标记名称,您需要重载并传入文档中的namespces,因此XRDS可以与它的URI匹配。

e.g。

XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlDoc.NameTable);
Response.Write(xmlDoc.SelectSingleNode("/xrds:XRDS/XRD",nsmgr).InnerXml);