Tagged Questions
1
vote
1answer
33 views
what is the explicit version of node()
Is the well-known XSLT 1.0 identity template
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
...
0
votes
1answer
32 views
C# XmlDocument for grabbing API specific data?
I am trying to grab the specific value of an attribute in:
http://data.alexa.com/data?cli=10&dat=snbamz&url=bing.com
<SD>
<POPULARITY URL="bing.com/" TEXT="16" SOURCE="panel"/>
...
1
vote
1answer
64 views
Xpath expression help - multiple expressions
Given the following example:
<?xml version="1.0" encoding="UTF-8"?>
<Patients>
<patientRole>
<id extension="996-756-495" root="2.16.840.1.113883.19.5"/>
<id ...
0
votes
1answer
191 views
How to write a Xpath Expression comparing two attributes or nodes
Given the following sample:
<?xml version="1.0" encoding="UTF-8"?>
<Patients>
<patientRole>
<id extension="996-756-495" root="2.16.840.1.113883.19.5"/>
<id ...
1
vote
1answer
98 views
How do I select the category XML nodes with XPath regardless of specific Id's?
In C# I am using the following code to read in the XML file into an XmlDocument.
In doing this I am trying to select all of the "category" nodes regardless of their specific category-id's using XPath. ...
2
votes
2answers
39 views
how can an “OR” be performed on an xpath expression without having to join two xpaths with a “|” or using an xpath function?
If I want to select /a/b1/c and /a/b2/c I can use one of the following:
/a/*[local-name()='b1' or local-name()='b2']/c
/a/b1/c | /a/b2/c
But I was wondering if there is a more elegant way to ...
1
vote
2answers
80 views
XPath - Return Null if single instance of element contains specific text
In an XML document such as:
<a>
<b>
<c>Text1</c>
...
</b>
<b>
<c>Text2</c>
...
</b>
...
</a>
What is a single ...
-1
votes
1answer
146 views
Get child nodes from Pointer in java
We need to get the child nodes of an node in the xml for which we have the Pointer. Can anyone please help as how to get the Node object of the node to which the Pointer is pointing?
Any help is ...
0
votes
1answer
76 views
How to get the name of a node in a xml file using xpath/php?
I have a large xml file and I need to print every entry with a specific namespace and the name of its node (with PHP).
For example, given the following xml structure:
<file>
...
0
votes
1answer
112 views
Unable to retrieve web data in java using tidy and Xpath
What I am trying to do is scrape a simple inner HTML from a XHTML file.
I have narrowed down my search to the element node, but I fail to retrieve the information.
PLEASE NOTE: the element node has ...
1
vote
1answer
1k views
how to use xpath in camel-context.xml to check if a particular node is exist or not
I am trying to develop a content-based routing camel application. This application will look at the folder src/data to see if there is a SOAP request file that has node ...
0
votes
1answer
351 views
Create single node if select single node is null
I have a program that updates a config file. For example, the config file may contain:
<configuration>
<userSettings>
<setting name="phoneNumber" serializeAs="String">
...
1
vote
2answers
181 views
How to remove xml nodes that are not in an array of xpath strings?
I have an array of xpath values and an xml feed.
When the feed comes in, I want to filter each xml file by removing the nodes that are not in my array of xpath's.
I can think of a very dirty way to ...
2
votes
1answer
443 views
Setting node value using XPath Java
I'm trying to set a node value via an XPath. I have the following but it doesn't seem to change the actual files value.
XPathFactory factory = XPathFactory.newInstance();
XPath xPath = ...
2
votes
2answers
84 views
Is the name->value pair of an attribute in XML considered to be two nodes, interpreted by XPATH?
The following article http://docs.oracle.com/javaee/1.4/tutorial/doc/JAXPXSLT3.html says that XPATH considers the following to be nodes:
Root
Element
Text
Attribute
Comment
Processing instruction
...
2
votes
2answers
1k views
XSLT function to get xpath to a node
I need a XSLT function which will return me the xpath to the node from which it called.
XML
<root>
<node>
<subnode />
<subnode />
...
2
votes
2answers
184 views
Add nodes into deeper branches of XML tree
I'm developing a web interface that enables admins to ban/unban particular users from my server whose software depends on an XML file to determine ban status of users. Initially, the 'Bans.xml' has ...
0
votes
2answers
669 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.
...
1
vote
1answer
276 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 ...
0
votes
2answers
757 views
XPATH Help: Finding XML Nodes in a Namespace with XPathNodeIterator
I am having problems finding the proper XPATH syntax to get the nodes I want with this XML file. For one, there is no NameSPace in the XML so I have to add one in code. I think this effects my XPATH.
...
0
votes
1answer
972 views
Trying to use RemoveChild() on XmlNodeList messes up my XmlNode collection
I'm trying to remove a specific node from a XmlNodeList named listaWidths. This specific list has 5 items before I use RemoveChild(). But, after the RemoveChild() statement, the list stays only with 1 ...
1
vote
1answer
2k views
Parsing XML in Python using Expat
Background: I'm coming from C#-land, so I'm looking for something like being able to handle nodes and values by selecting via Xpath.
Here's my code, so far:
import urllib
import sys
from ...
1
vote
1answer
1k views
How to get an xpathContext from an xmlNode in python
big fan of xpath on .net, and sax in python, but first time using xpath in python.
I have a small script, that uses xpath to select some nodes from a doc, iterates through them, and then ideally uses ...
5
votes
5answers
20k views
xslt and xpath: match conditionally upon current node value
Given the following XML:
<current>
<login_name>jd</login_name>
</current>
<people>
<person>
<first>John</first>
...