Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
715 views

Create XPathDocument from XmlElement

I'm using a webservice which returns an XmlElement object to my c# program. I would like to read information from the XmlElement using Xpath. What is the best way to create an XPathDocument from the ...
1
vote
1answer
207 views

Import XML to Dataset or read XML using XPath?

I'd like to know what is the best practice. I'm exporting some data (tables) from my database to XML files so I can read my data from them. To export, I'm using DataTable.WriteXml (c#) Now to read, ...
1
vote
3answers
106 views

How do I use XPath to get the value of an attribute in c#?

I'd like to pass in an xpath query and return the value of what I find. I'm looking for the value of an attribute specifically. _query = "//@RequestType"; I can get the node back, but I'm not sure ...
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
2answers
1k views

C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?

I'm going on a couple assumptions here: XPathDocument is not editable. XmlDocument is editable. XPathDocument is more efficient for XslCompiledTransform. That being the case (and please correct ...
1
vote
3answers
1k views

XslCompiledTransform output as XPathDocument

I am trying to use a XslCompiledTransform, and use the output as a XPathDocument. Any Ideas?
1
vote
1answer
180 views

XPathDocument Threading Question

I have a web application where I am trying to cache an XPathDocument. The XPathDocument is created as follows. XPathDocument xdoc = new XPathDocument(new StringReader(ruleXml)); Then I want ...
0
votes
1answer
172 views

Error when I use XPath.XPathDocument() function

I'm using this code in my ASP.NET/VB.NET project: Dim sourceFile as String = "http://xml.weather.yahoo.com/forecastrss?p=94704" Dim xPath As New XPath.XPathDocument(sourceFile) and the second line ...
0
votes
3answers
195 views

How to estimate memory need by XPathDocument for a specific xml file

Is there any way to estimate the memory requirement for creating an XpathDocument instance based on the file size of the xml? XpathDocument xdoc = new XpathDocument(xmlfile); Is there any way to ...
0
votes
1answer
314 views

How do I modify node value while iterating with XPathNodeIterator?

I'm navigating XML document with XPathNodeIterator, and I want to change some nodes' values. I can't figure out how :( Here's the code I'm using: XPathDocument docNav = new XPathDocument(path); ...
0
votes
3answers
335 views

Parse XML document

I am trying to parse a remote XML document (from Amazon AWS): <ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2009-03-31"> <OperationRequest> ...
0
votes
2answers
40 views

Nodes sequence with options values

Here's a question about repeated nodes and missing values. Given the xml below is there a way in XPath of returning (value2, null, value5) rather than (value2, value5)? I'm using an expression that ...
0
votes
3answers
407 views

XPath query that respect node positon and attribute value

Is there a way to build a XPath query that finds a node at a certain position AND with a certain attribute value? Consider the following sample xml: <Item Type="Book"> <!--1st Param node in ...
0
votes
3answers
965 views

WPF - Searching an XML doc for values using XMLTextReader

Ok another WPF question, well I guess this is just general .NET. I have an xml document retreived from a URL. I want to get multiple values out of the document (weather data, location, some other ...
0
votes
2answers
285 views

Why do I get web exception when creating an XPathDocument?

Creating an XPathDocument with referenced DTD sometimes throws a web exception. Why?