Tagged Questions

4
votes
1answer
146 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 ...
1
vote
1answer
59 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
1answer
269 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
49 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
2answers
177 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
633 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
961 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
242 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
0answers
49 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
404 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
89 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
147 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
132 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> ...