Tagged Questions

19
votes
9answers
14k views

Using Xpath With Default Namespace in C#

I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows: XmlElement myXML = ...; XPathNavigator navigator = ...
4
votes
2answers
1k views

Implementing my own XPathNavigator in C#

I am looking for a C# example implementation of a class derived from Microsoft's XPathNavigator class. Can any one point me at such an article? As you may (or may not) know, the XmlNavigator is ...
2
votes
3answers
111 views

How to use XPath-Functions like exists() in C#?

I want to read some Nodes from a XmlDocument-Object using the SelectNodes-Method and the XPathNavigator-Class. But C# is unable to evaluate this (validated with XMLSpy) XPath-Expressen: ...
2
votes
3answers
4k views

C# - get attribute values from matching XML nodes using XPath query

This doesn't seem like it should be difficult, but I'm stuck currently. I'm trying to get the attribute values for a particular attribute from nodes that match a given XPath query string. Here's ...
2
votes
1answer
456 views

XPathNavigator help

Here's a sample of the XML I'm working with (retrievable from any wiki's Special:Export/SomePage results): <mediawiki xmlns="http://www.mediawiki.org/xml/export-0.4/" ...
1
vote
1answer
92 views

Why XPathNavigator.MoveToAttribute() is not working?

I am trying to get my XPathNavigator to work ( to go to previous attribute name "NAME") with attached piece of code but somehow it doesn't want to move. Neither thisNavigator.MoveToFirstAttribute() ...
1
vote
1answer
59 views

Is MoveToParent()/MoveToFirstChild() pair necessary with XPathNavigator?

This is an example of using XPathNavigator from Microsoft. using System; using System.Xml; using System.Xml.XPath; // http://support.microsoft.com/kb/308343 namespace q308343 { class Class1 { ...
1
vote
0answers
49 views

Can I use an XPathExpression compiled from one navigator with a different navigator?

If I get an XPathNavigator, and use it to compile an XPathExpression exp, what constraints are there on the way I can use exp? Can I use exp with a different navigator? I know that it runs, and ...
1
vote
2answers
137 views

How to travese back to the parent node in the XML file by using Xpath(using XSLT) query?

Let us have a xml tree of depth N. I have traveresd the last node means i am at last note. Now i wanted to go back to some level up (say at N-3) in the xml tree from that last node. Please let me ...
1
vote
2answers
177 views

VB.NET: XPath problem

I have the follwing XML: <?xml version="1.0" encoding="utf-8" ?> <configuracoes> <gerais> <atualizacoes> <tipo>automática</tipo> ...
1
vote
1answer
961 views

Why do I have to pass an empty namespace to XPathNavigator.GetAttribute?

Given the following XML markup: <root xmlns="Demo"> <child name="foo"/> </root> and an XPathNavigator positioned on the <child> element, string withNs = ...
1
vote
1answer
614 views

Can't read xml through XPathNavigator

Here is my code, I don't know why I can't read the data through XPathNavigator. But it was well before I add namespace and schema. XmlReaderSettings settings = new XmlReaderSettings(); ...
1
vote
1answer
242 views

Is it possible to retrieve the original XML from XPathNavigator?

I have an XML document, want to do syntax highlighting. The code uses XPathDocument, XPathNavigator and XPathNodeIterator . After I call Select(), how can I get the original text in the XML ...
0
votes
1answer
95 views

How to update an empty node using Xpath navigator

i have an XML like this <main> <reportPath>d:\reports</reportPath> <errorPath>D:\Error</errorPath> <project>D:\xyz.txt</project> <value /> ...
0
votes
2answers
338 views

Add XMl attributes if not exist using Xpath Navigator

I want to add attributes only when it is not exist.
0
votes
2answers
49 views

XPath Predicate Issue

I've got an XPath expression with a predicate that selects a person's name and ID from within a nested element, using the XPathNavigator.Select method. This works: ...
0
votes
2answers
78 views

Parse XML structure in .net 2

I have the following xml fragment <converters c1="XXX" c2="ZZZ"> <converter c1="YYY" c2="ZZZ" buy="0.99899070428571424" sell="0.99966215285714288" /> <converter ...
0
votes
1answer
334 views

My InnerXML equals my OuterXML after selecting only the Childnodes with XPathNodeIterator

The Code i am using is: string m_myXML = "<parent>\n" + " <child1>\n"+ " <child2a>\n"+ " <list1 attrib=\"one\" ...
0
votes
1answer
915 views

Adding and manipulating multiple child nodes using XPathNavigator in C#

I'm writing classes which (de)serialize to/from XML. When serializing and deserializing, the class gets a XPathNavigator to get data from/add data to. Because the class may contain objects which are ...
0
votes
1answer
89 views

Can an XMLDocument object be use with an XPathDocument object?

I have a static method that converts a html file and returns an XMLDocument object. After doing extensive research, the following question has arised: Can pass an XMLDocument object to a ...
0
votes
1answer
147 views

Rename an element using XPathNavigator

I have an XPathNavigator object pointing to an XML element. I want to rename the element to another name (and also rename the associated end element). Can this be done using the XPathNavigator? (I ...
0
votes
0answers
132 views

XPath Performance in .NET with Positional Predicates

Given the XML <PSG> <C id="1"> <N id="2" > <A id="3" /> <D id="4"> <PP /> </D> ...
0
votes
2answers
724 views

Need Help About Using XPathNavigator in C#?

My XML file as below. It mixed schema and normal elements. <?xml version="1.0" encoding="utf-8"?> <!-- R1 --> <ax:root xmlns:ax="http://amecn/software/realtime/ax"> <xsd:schema ...