Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
785 views

SelectSingleNode always returns null?

Taking this simplifed example of my XML: <?xml version="1.0"?> <message xmlns="http://www.mydomain.com/MyDataFeed" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
6
votes
5answers
248 views

Why is XmlNamespaceManager necessary?

I've come up kinda dry as to why -- at least in the .Net Framework -- it is necessary to use an XmlNamespaceManager in order to handle namespaces (or the rather clunky and verbose [local-name()=... ...
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
1answer
10k views

Using XPath in SelectSingleNode: Retrieving individual element from XML if it's present

My XML looks like : <?xml version=\"1.0\"?> <itemSet> <Item>one</Item> <Item>two</Item> <Item>three</Item> .....maybe more ...
4
votes
1answer
4k views

Why is SelectSingleNode returning null?

I'm working with an XML document that contains a structure that looks similar to this: <MT> <Events> <event id="1"> <field name="blah" value="a_value" type="atype" ...
3
votes
2answers
6k views

System.Xml.XPath.XPathException: Expression must evaluate to a node-set when executing SelectSingleNode(“//(artist|author)”)

Can somebody explain me why is this not working? I'm executing XmlNode xmlNode = xmlDocument.SelectSingleNode("//(artist|author)"); and I get System.Xml.XPath.XPathException: Expression must ...
2
votes
1answer
3k views

Parsing XML: Colon in my element causes XPath to miss it

I have an XML document that I load in and try to search with XPath. The root node in this file is <t:Transmission xmlns:t='urn:InboundShipment'> and the file end is properly closed with ...
1
vote
1answer
94 views

I'm trying to replace Xpath with jQuery

Android browser not support XpathEvaluator Object. I'm trying to replace with Xpath with JQuery. For example, 01. oRoot.selectSingleNode("step/person"); -> $(oRoot).find("step person"); 02. ...
1
vote
2answers
66 views

XPath string for selecting data types

I have an XML Document that specifies certain data instead data nodes like so: <data type= "arbitrary value">Value</data> I need to be able to look through this document and select the ...
1
vote
2answers
165 views

XML XPath SelectSingleNode issues

I am trying to select certain nodes inside of childnodes of the main document. XmlNodeList nodes = xml.SelectNodes("//RECORD"); for (int i = 0; i < nodes.Count; i++) { ...
1
vote
1answer
416 views

HtmlAgilityPack - selecting single node from a node collection using XPath

i have been fighting with this code for a few hours now.... Sample Node for results: <div class="left vcard" sizcache="1" sizset="32"> <h2 class="clearfix fn org url" sizcache="1" ...
1
vote
1answer
343 views

C# Using XPATH to select specific element with known values, then delete

I am new to xpath in C# and I am trying to select an element that has two specific values. This is what the XML format looks like <?xml version="1.0" encoding="utf-8"?> <Manager> ...
1
vote
2answers
402 views

C# SelectSingleNode with NameSpace issues

I am using C# (.NET 2.0) -- actually trying to have it working on Mac OS X using MONO (I don't think MONO is the issue) Given the following XML fragment which has been retrieved as a XmlNode from a ...
1
vote
2answers
255 views

NullReferenceException when appending attribute to the element in xml using c#

I get a NullReferenceException when trying to append element to its parent to element, like this XmlDocument dartDatabase = new XmlDocument(); string path = @"D:\xml\dartDatabase.xml"; ... ...
1
vote
2answers
424 views

SelectSingleNode returns null

So i have an XML document that looks like this: <?xml version="1.0" encoding="UTF-8"?> <gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" ...
1
vote
2answers
175 views

XPath Query always returns NULL only on some queries in SingleNodeSelect

<?xml version="1.0" encoding="utf-16"?> <users> <user number="0772247157"> <step stepnumber="1">complete</step> <step stepnumber="2">complete</step> ...
1
vote
1answer
237 views

Can DocumentNode.SelectSingleNode skip selection of anchor tag events?

Given the following... HtmlNode myDiv = doc.DocumentNode.SelectSingleNode("//div[@id='someid']"); ...where the resulting myDiv.InnerHtml contains: <span>...other content I want to ...
1
vote
1answer
465 views

Selectsinglenode in IXMLDOMElement?

can i perform select single node from IXMLDOMElement ,if its possible give me one example for that using MSXML
1
vote
4answers
1k views

Null returned when selecting a node in XML document

New to XML. I have a 3rd party webservice that supplies an XML document that I have to update the element values and pass back. The core issue issue is I get an NullReferenceException error when ...
0
votes
1answer
91 views

SelectSingleNode() with XPath C# Failure

i got a XML File as export from Wireshark and want to select the Number of the actual frame The structure of this file is like this <packet> <proto> ... </proto> ...
0
votes
2answers
59 views

Saving Particular Node in XML File

I am populating textboxes with information from a particular node based on it's ConfirmNum. Then when all info is updated, I am saving information (by a submit button) back to the particular node. ...
0
votes
1answer
137 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
0answers
216 views

XPath query for an attribute containing forward slash (/)

I'm trying to do a SelectSingleNode on an XMLDocument using an XPath expression. However, when the attribute value that I'm searching contains multiple forward slashes (/), it returns null. I can't ...
0
votes
1answer
55 views

How to read multiple CodeTables within XML Form

I have multiple Code Tables at the bottom of the XML that I am processing and I would like to lookup a code that comes from the top portion of the XML and get the CodeText from a table at the bottom ...
0
votes
2answers
151 views

xpath query for finding an element with a condition which matches the attribute and child node value

I have 2 elements with same attribute but with different child node values. Can I query to find a specific element which matches the attribute and also the child node value. To be specific, this is ...
0
votes
3answers
518 views

SelectSingleNode and namespace - can't find nodes (using namespace mgr)

I have a relativly complex xml message I am recieving from a partner company. I need to parse up the xml to use it. I had it working fine, then they changed the message all around and now none of my ...
0
votes
1answer
2k views

Select Single Node with a attribute name in vbscript

Have an xml file <DataSource> <localdata> <add context="Localization"> <parameter name="timeout" type="int" defaultvalue="60"/> ...
0
votes
4answers
395 views

Function RemoveChild(XmlNode node) failed in C#

When I try to remove some of my child element with RemoveChild(). But throw exception. I attached my code below. nodeName = ...
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
2answers
349 views

XmlDocument SelectSingleNode of improperly formed XML

I have a XmlDocument which is not properly formed <library> <dept> <books></books> <language></language> </dept> <dept> ...
0
votes
1answer
824 views

HTMLAgilityPack ChildNodes index works, named node does not

I am parsing an XML API response with HTMLAgilityPack. I am able to select the result items from the API call. Then I loop through the items and want to write the ChildNodes to a table. When I select ...
0
votes
1answer
298 views

Backslash SelectSingleNode Escape

In Javascript I have an XML DOM. I am trying to select a node within the DOM by using SelectSingleNode. Something like cell.SelectSingleNode(stuff [@attrjunk = 'MATCH']). So what I want to match on ...
0
votes
3answers
2k views

C # SelectSingleNode - Can it be used recursively?

As in, if I have an XML Document <root a="value"> <item name="first"> x <foo name = "firstgrandchild">There is nothing here</foo> y <foo ...