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
118 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
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
404 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
323 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
71 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
48 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
45 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
136 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
171 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
144 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
1answer
609 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
591 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
239 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
34 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
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
1answer
84 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
1answer
220 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
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
328 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
377 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
0answers
126 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
695 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 ...