Tagged Questions

19
votes
9answers
13k 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 = ...
6
votes
2answers
1k views

Parse XPath Expressions

I am trying to create a 'AET' (Abstract Expression Tree) for XPath (as I am writing a WYSIWYG XSL editor). I have been hitting my head against the wall with the XPath BNF for the past three to four ...
4
votes
1answer
117 views

How do I use XPATH to parse the following that has a namespace?

I need to extract a claim from a SAML token. The claim I'm interested in is http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider and I'd like to get the value "Google" in ...
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
102 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
3k 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
400 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
68 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
45 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
1answer
607 views

Can't Get .NET XPathNavigator to work

I am having problems with XPathNavigator. I have a document with a bunch of "topic" elements w/o namespace in a stream. I am using (expression dumbed down to bare minimum, first I thought my ...
0
votes
1answer
58 views

Which is the best for performance wise: XPathNavigator with XPath vs Linq to Xml with query?

I have an application in which I am using XPathNavigator to iterate nodes. It is working fine. But I want to know that if I use LINQ to Xml.... What benefits(Performance, maintainability) I will ...
0
votes
1answer
83 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
3answers
249 views

Find InnerHtml value using XpathNavigator and HtmlAgilityPack

portion of test.xml <tr class="a"> <td align="left" nowrap="true">desc1</td> <td align="left">desc2</td> <td>desc3</td> <td ...
0
votes
1answer
214 views

How to select a node using XPathNavigator.SelectSingleNode(string xpath)?

I have this xml file "target.xml": <World> <Nkvavn> <Rcltwkb> <Pjwrgsik /> <Nemscmll /> <Fnauarnbvw /> <Egqpcerhjgq /> ...
0
votes
2answers
333 views

Add XMl attributes if not exist using Xpath Navigator

I want to add attributes only when it is not exist.
0
votes
1answer
327 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
846 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
86 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
142 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
2answers
693 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 ...