Re: Simple xpath query with default namespace

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



Thanks Mark. You're explanation makes sense. I guess I was confused
by the fact that I needed to introduce a prefix in to the my xpath
query (a prefix that's no actually in the xml) in order for the library
to allow me to query for something in a namespace, regardless of
whether it's the default namespace.

On Dec 3, 12:45 am, Mark R. Dawson
<MarkRDaw...@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
Hi Jason,
namespaces in XML serve the same purpose as namespace in C#, they are a
way to distinguish between two items that happen to have the same identifier.
In XML you may have one XML definition that has a node called <Account
BankNo="123"> which refers to a Bank Account and another node that is also
called <Account Name="bob"> that refers to a Video Rental account, so if both
nodes are part of the same XML document how could you distinguish between
them? The namespace allows that since one could be part of the namespacehttp://www.example.org/bankingand anotherhttp://www.example.org/videorental
then when you have your XPath query you will need to tell XPath which Account
element you mean by prefixing the name with the namespace in your query.
Hence in your example because the node is part of a namespace you need to use
that information in your XPath query.

Mark.
--http://www.markdawson.org

"Jason Mobarak" wrote:
I don't quite understand why this works... but as many others have
probably discovered if you create a namespace manager like so:

System.Xml.XmlNamespaceManager xmlNsMgr = new
System.Xml.XmlNamespaceManager(xmlReader.NameTable);
xmlNsMgr.AddNamespace("q", "urn:thing-schema-v1");

....then use a query such as "/q:thing/*" then everything in the code
below works. Why is this?

On Dec 2, 11:17 pm, "Jason Mobarak" <jason.moba...@xxxxxxxxx> wrote:
Hello --

I'm attempting to get a handle on how to do xpath queries with
System.Xml -- so far the biggest hurdle has been how to deal with a
default namespace. If I use the test xml:

<?xml version="1.0" encoding="utf-8" ?>
<thing xmlns="urn:thing-schema-v1">
<foo>foo thing</foo>
<bar>bar thing</bar>
<baz>baz thing</baz>
</thing>

...everything in the code below fails (as in no nodes are located, when
3 should be). However, if I remove the xmlns declaration from the
<thing> root element everything works fine. What am I doing wrong?

using System;
using System.Collections.Generic;
using System.Text;

namespace XmlTest
{
class Program
{
static void Main(string[] args)
{
const string szXPath = "/thing/*";
const string szFilename = @"..\..\test-wo-xmlns.xml";

System.Xml.XmlReader xmlReader = new
System.Xml.XmlTextReader(System.IO.File.OpenRead(szFilename));

System.Xml.XmlNamespaceManager xmlNsMgr = new
System.Xml.XmlNamespaceManager(xmlReader.NameTable);
xmlNsMgr.AddNamespace(String.Empty, "urn:thing-schema-v1");

System.Xml.XPath.XPathDocument xpath = new
System.Xml.XPath.XPathDocument(xmlReader);

System.Xml.XPath.XPathNavigator xpathNavi =
xpath.CreateNavigator();

System.Xml.XPath.XPathNodeIterator xpathQuery =
xpathNavi.Select(szXPath);
while(xpathQuery.MoveNext())
{
string szValue = xpathQuery.Current.Value;
System.Console.WriteLine(szValue);
}

System.Xml.XPath.XPathExpression xpathExpr =
xpathNavi.Compile(szXPath);
xpathExpr.SetContext(xmlNsMgr);

xpathQuery = xpathNavi.Select(xpathExpr);
while (xpathQuery.MoveNext())
{
string szValue = xpathQuery.Current.Value;
System.Console.WriteLine(szValue);
}

System.Xml.XmlDocument xmlDoc = new
System.Xml.XmlDocument();
xmlDoc.Load(szFilename);

System.Xml.XmlNamespaceManager xmlNsMgr2 = new
System.Xml.XmlNamespaceManager(xmlDoc.NameTable);
xmlNsMgr2.AddNamespace(String.Empty,
"urn:thing-schema-v1");

System.Xml.XmlNodeList xmlNodes =
xmlDoc.SelectNodes(szXPath);

foreach(System.Xml.XmlNode xmlNode in xmlNodes)
{
string szValue = xmlNode.Value;
System.Console.WriteLine(szValue);
}
}
}

}

.



Relevant Pages

  • Re: SQL2005, validation, & XQuery
    ... I think you are experiencing occurence issue, not namespace. ... your xpath syntax is correct. ... The xml in my sample columns only *had* one node: ... Microsoft Online Community Support ...
    (microsoft.public.sqlserver.xml)
  • XMLNamespaceManager problem
    ... I'm trying to query a XML file that was created via ADO.NET. ... When I remove the namespace from the XML ... Below is the code fragment and sample XML data. ...
    (microsoft.public.dotnet.xml)
  • Re: SQLXML Type Conversion Issue
    ... XPath 1.0 only supports double arithmetic according to the standard. ... the offending predicate) or you need to write the FOR XML ... > found that SQLXML is not returning any data for certain XPath queries, ... > The resulting query has the following where clauses: ...
    (microsoft.public.sqlserver.xml)
  • Re: Problem getting node
    ... And your xpath expression is not namespace aware. ... A quick work around would be to remove the namespace from your Xml to ...
    (microsoft.public.dotnet.xml)
  • Re: XmlDocument.SelectSingleNode() & namespaces - doesnt work
    ... understand the difference between no namespace and default namespace - but the 1.0 spec is a bit unclear on exactly what this means in practice. ... That's the most FAQ ever with XPath. ... Read "XML Namespaces and How They Affect XPath and XSLT" at ...
    (microsoft.public.dotnet.xml)