Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

How to select all leaf nodes using XPath expression?

I believe it's possible but couldn't figure out the syntax. Something like this: xmlNode.SelectNodes("//*[count(child::*) <= 1]") but this is not correct.
4
votes
2answers
1k views

XmlDocument.SelectSingleNode and xmlNamespace issue

I'm loading a string to an XML document that contains the following structure : <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" ...
4
votes
4answers
696 views

XmlNodeList (why is this empty)

I can't understand why this NodeList is Empty XmlDocument document = new XmlDocument(); document.Load(xmlpath); XmlNodeList nodes = ...
3
votes
3answers
7k views

Is there a way to select sibling nodes?

For some performance reasons, I am trying to find a way to select only sibling nodes of the selected node. For example, <div id="outer"> <div id="inner1"> </div> ...
2
votes
3answers
215 views

Does .NET SelectNodes() allow you to select attributes?

Does it pull all node types supported by Xpath? Seems that when I call selectNodes("@") it just returns the elements that contain the attributes, but I want to get the list of attributes ...
2
votes
3answers
2k views

XElement to get all sub-element node names and values

I'm thinking of an approach something like this. Please let me know if this can actually work this way: For Sample XML: <Root> <Node> <SubEl1>abc</SubEl1> ...
2
votes
3answers
207 views

Single xpath expression to get some attributes

I have an XML document with some nodes like <node name="xxx" id="xxx"> Can I use a single XPath expression to get all attribute nodes whose parent has also atrtribute @id = 7?
2
votes
3answers
386 views

XmlDocument.SelectNodes question

What's the difference using root node to select and using document object to select nodes? Which way is preferred. For example, 1. XmlDocument Doc = new XmlDocument(); Doc.Load(mem); XmlNodeList ...
2
votes
3answers
177 views

Retrieving attributes from XML

Why does running this code... XmlDocument doc = new XmlDocument(); string xml = @"<?xml version=""1.0"" encoding=""utf-8"" ?> <BaaBaa> ...
2
votes
2answers
2k views

MSXML Select Nodes Not Working

I am working on an automated testing app, and am currently in the process of writing a function that compares values between two XML files that should be identical, but may not be. Here is a sample ...
1
vote
1answer
63 views

SelectNodes in Android?

Is the method .selectNodes available in Android ? I need to access particular data in a xhtml code using its XPath. I read the method exists in Android since API Level 8, but I don't know how to use ...
1
vote
2answers
39 views

How to create Conditional Xpath statement?

I want to select xml node with conditional Xpath like- xmlnode.SelectSingleNode("if (ns:substanceAdministration/ns:consumable/@typeCode == UNK) then evaluateThisXpath else evaluateOtherXpath") my ...
1
vote
1answer
205 views

Selecting Nodes in XSD schema using Xpath

I have the following code that I wish to use to select all the elements I will need in a certain sequence. Here's the snippet: XmlDocument schema = new XmlDocument(); ...
1
vote
1answer
119 views

Agility Pack XPath Issue

I am attempting to use the HTML Agility Pack to look up specific keywords on Google, then check through linked nodes until it find my websites string url, then parse the innerHTML of the node I am on ...
1
vote
1answer
93 views

what does this xpath means “//Form/*[. = 'on']”

I am newbie in xml related things I am not able to understand : SelectNodes(@"//Form/*[. = 'on']"); Note : SelectNodes is a function of XmlNode.(related to XmlDocument) Please tell me what this ...
1
vote
1answer
336 views

Modifying Existing XML Content in C#

I found some examples about this subject. Some of the examples gived a method to modify attribute with SelectNodes() or SelectSingleNode(), and others gived the method to modify attribute with ...
1
vote
1answer
93 views

Adding OR clause in Node selection criteria - HTMLAgility

Can I put OR clause in node selection using HTMLAgility (HtmlAgilityPack.HtmlNodeCollection)doc.DocumentNode.SelectNodes("//td[@class=\"roomPrice figure\"]"); What I need is some times it should be ...
1
vote
2answers
608 views

SelectNodes and GetElementsByTagName

what are main differences between SelectNodes and GetElementsByTagName.
1
vote
4answers
4k views

Basics of XmlNode.SelectNodes?

I'm not sure why this isn't working. I have an XmlNode in a known-format. It is: <[setting-name]> <dictionary> <[block-of-xml-to-process]/> ...
0
votes
4answers
39 views

select elements with the name attribute name in special xml structure

below is the structure of my xml document. I just want to first take the value of every node <attribute name="a"> then make a comparison of it with a given value. However I don't how to locate ...
0
votes
2answers
83 views

XmlNodeList SelectNodes trouble

I'm trying to parse an xml file My code looks like: string path2 = "xmlFile.xml"; XmlDocument xDoc = new XmlDocument(); xDoc.Load(path2); XmlNodeList xnList = ...
0
votes
1answer
138 views

Defining prototype property for JavaScript for XML prototype functions

I am using custom javascript functions provided at this link (http://km0.la/js/mozXPath/) to implement particular XML functionality in FireFox. Here is the code: // mozXPath // Code licensed under ...
0
votes
4answers
132 views

Parsing Optional Tags in C#

I'm trying to find an easy and slick way to do the following requirement. I have a XML message with this arrangement: <persons> <person> ...
0
votes
0answers
88 views

DomDoc-Importing Nodes from one file into a specific node in another using js?

I've created a program to insert the xml configuration from one file into another file but when I use the importNode method, the xml only appears as the lat node under the root node. Is it possible ...
0
votes
1answer
243 views

HtmlAgilityPack selecting nodes with end different

I've this code... <td class="alt1" id="td_threadtitle_335784"> <td class="alt1" id="td_threadtitle_342222"> <td class="alt1" id="td_threadtitle_554213"> <td class="alt1" ...
0
votes
1answer
234 views

Monodroid: Exception in XmlDocument.SelectNodes() method

I am struggling with some Monodroid code that should be simple, but is causing an unexpected exception. The code throws an exception when I try to invoke SelectNodes() on an XmlDocument object. This ...
0
votes
1answer
64 views

User selects nodes for a custom view (DRUPAL)

all, I hope you can either help me, or direct me the the easy-to-find-in-retrospect answer which is already out there. I have had two drupal RFPs in the past month where the admins maintains content, ...
0
votes
3answers
1k views

selectSingleNode works but not selectNodes

Javascript: var req=xmlDoc.responseXML.selectSingleNode("//title"); alert(req.text); as expected, returns the text of the first "title" node. but this var ...
0
votes
1answer
561 views

XmlNode.SelectNode with multiple attribute

One of my nodes inmy xml file is as follows. <LOGIN_ID NAME="Kapil"> <SEARCH_ID>Kapil Koli</SEARCH_ID> <GUID>111</GUID> ...
0
votes
1answer
835 views

How to Extract atom rss

Given an url, if it has any rss nodes, then i am adding to the date base. e.g. For the url link text rssDoc.SelectNodes("rss/channel/item").Count is greater than zero but for the atom url ...
0
votes
1answer
447 views

Use selectNodes with multiple alternative paths OR combine 2-3 IXMLDOMNODELIST

Just wondering if anyone would be able to help with the following VBScript script I'm writing: Can I do somthing similar to this: Set obj = something.selectNodes(path1, path2, path3) // Where it ...
0
votes
1answer
361 views

Getting position of the XML element inside For Each loop

How do I get the position of the XML element in this loop? For Each objNode In objDoc.SelectNodes("//books/book") ??? Next What I want in output would be something like 1 2 3 4 ....
0
votes
4answers
261 views

How can I navigate deeper in XML and append data in it

I have loaded XmlDocument into memory and created new XmlElement. Now I am trying to add XmlElement to the path /report/section/hosts but I don't know how. I can add it easily below root node of XML ...
-1
votes
3answers
76 views

simple dom question

say I have <div id="searchform"> <div style="float:right"> <a href="~">Advanced Search</a> </div> <div id="resultStats"> About 5 trillion results ...