Tagged Questions
The xpathnavigator tag has no wiki summary.
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/" ...
2
votes
2answers
321 views
Get full XPath from partial
I am using selenium with perl and have label on page, to access this label i have following xpath: //*[text()='some here'] , the problem that a need to get full xpath of this element, like ...
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
0answers
61 views
ASP.NET 1.1 - XPathNavigator OuterXml equivalent
I'm working with the Google Maps API to do GeoCode lookups in 1.1 and I'm running into a brick wall with the XPathNavigator object.
I need to create a "sub-navigator" so that we can perform global ...
1
vote
1answer
250 views
System.Xml.XmlDocument, System.Xml.XPath.XPathNavigator{ReplaceSelf,OuterXml}: Replacing Placeholders In Document
I'm currently maintaining a Web application that I wrote about a year or so ago for work. Basically it allows users to create custom XHTML report templates. I use XmlDocument, XPathNavigator, et. al. ...
1
vote
0answers
44 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
3answers
134 views
How do I make XPath expressions more generic?
I have xpath expressions for a navigation tree which contains some child branches whicjh can be added:
...
1
vote
2answers
131 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
170 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
143 views
xPath Evaluate vs XPathNodeIterator
I am searching the fastest way to count some tags in a huge xml-file (120MB)
long Quantity;
XPathDocument xDocData = new XPathDocument(str_File_path);
XPathNavigator xNavData = ...
1
vote
3answers
783 views
XPathNavigator in Silverlight
I have a code library that makes heavy use of XPathNavigator to parse some specific xml document. The xml document is cross-referenced, meaning that an element can reference another which has not yet ...
1
vote
1answer
604 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 ...
1
vote
1answer
912 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
587 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
238 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
3answers
33 views
xpath: extract data from a node
I am trying to extra some data from a webpage. the structure of the webpage is as below
<li id="yui_3_4_1_1_1326860702769_9706">
<span id="yui_3_4_1_1_1326860702769_9705">Sales rank: ...
0
votes
0answers
37 views
.Net Null Reference Exception in DocumentXPathNavigator
I've run into an interesting exception. On one of my production servers, occasionally I'll get the following exception.
System.NullReferenceException: Object reference not set to an instance of an ...
0
votes
1answer
56 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
23 views
XpathNavigator raise error NotSupportedException
I want to update XDocument using the following code
private static bool ResetUpdateVersion()
{
// this indicate either the verwsion is different or not
// this will either call the update ...
0
votes
0answers
27 views
Load Dropdown values using Xpath
<Object type="drop-down" name="Medical Emergency?">
<Properties text="" padding="0" height="23">
<Property id="captions">
<Item value="Yes" />
<Item value="No" ...
0
votes
0answers
66 views
XDocument will not read from InflaterInputStream in Silverlight
I'm working on a silverlight offline app that uses Xml to both save data to isolated storage and communicate with a Java Tomcat server via http
Data sent and received via http needs to be compressed ...
0
votes
1answer
82 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
0answers
21 views
How to get multiple values from app.config using XPathNavigator
I have an xml that looks like this (its part of a config file)
<CartIndexes>
<Cart>
<ID> 1</ID>
<Restricted>
...
0
votes
3answers
248 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
2answers
48 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
71 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
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
373 views
How can I get the XPath to the XmlNode my XPathNavigator is on?
dom4j (a really good Java XML library) has a very useful call. On the equivalent of their XPathNavigator object you can request a unique Xpath statement that will give you that specific node. How can ...
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
0answers
125 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
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 ...