XML document unit (element, entity, attribute, text, comment, notation, even document or it's fragment).
2
votes
3answers
44 views
Get value from node with same name
I'd like to retrieve information from an XML file, however the way it's formatted is pretty strange. Here it is...
<?xml version="1.0"?>
<Careers>
<CareerList>
...
0
votes
0answers
16 views
Clone XmlNode with Parents
I am trying to make temporary changes to a XmlNode as I go through a XmlNodeList. The problem is that if I restore the changes in an area that affect another object in the nodeList, the Parent Node ...
0
votes
0answers
21 views
creating hierarchichal XML structure dynamically
I am creating an XML as shown by below code
public class Group
{
[XmlElement(typeof(Manager))]
public Employee [] Staff;
[XmlElement (typeof(int)),
XmlElement (typeof(string)),
XmlElement ...
0
votes
0answers
16 views
How to display product based on xml node using c#
Its a common one - but its not working for me with Amazon(AWS) XML
here is my xml:
<BrowseNodeLookupResponse ...
0
votes
0answers
42 views
Traversing empty / undefined XML nodes in Javascript with IE 8
Same old story: something works in Firefox / Chrome, but not in IE.
var reason = '';
if (data.documentElement.getElementsByTagName("DNFReason")[0].childNodes[0] !== undefined)
{ reason = ...
1
vote
1answer
30 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
21 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
51 views
Get Xml Text node ID
I'm trying to parse through the document.xml file of a .docx file. I would like to search for Text and then return the node that text is located so I can then move up to the parent node and insert a ...
1
vote
1answer
64 views
Reading XML for iTunes RSS feed
Hey all i am reading my XML RSS feed like so:
Dim rssSubNode As XmlNode = rssNode.SelectSingleNode("title")
Dim title As String = If(rssSubNode IsNot Nothing, rssSubNode.InnerText, "")
rssSubNode = ...
1
vote
1answer
55 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
106 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 ...
0
votes
1answer
31 views
How to retrieve a speicific element value from an xml?
<ROOT>
<ECERT O_CRP="10" O_ORD="234567" O_CUS="34567" C_ORD_TYP="cg" O_GFCT="864695" O_GFCT_CARD="1234567891234567890" *A_GFCT_RFD*="0.0000" D_ORD_PLC="2013-03-27 01:23:05:000" ...
0
votes
0answers
61 views
How to populate listbox with REST Parameters for Wiki api on ASP.NET?
I am using this Wiki api: https://en.wikipedia.org/w/api.php, for a website where users can type in a keyword, and a dropbox is filled with Wikipedia Categories. When a Category is a selected, a ...
1
vote
1answer
91 views
Add node to existing XML document using DOm and PHP
I hope someone can help as this is driving me insane.
I need to update an existing XML file using PHP. If the values in one of the nodes equals something, then I want to add a new child element with ...
0
votes
1answer
100 views
How to iterate over a node list and get child elements?
I have some XML like this:
<?xml version="1.0" encoding="UTF-8"?>
<person>
<version>1.1</version>
<lname>xxxx</lname>
<fname>yyyy</fname>
...
2
votes
1answer
54 views
Reading from XML error [closed]
I've got maybe a simple question for you, but Im stuck with this one.
So, I have an application, which has multiple userControls, inherited from one class. I can drag them to a panel, and resize ...
1
vote
1answer
68 views
Get XML node using XMLNode(.Net) with multiple condition
My XML format is like this.
<Rule id="MyRule">
<SubRule type="min" id="50" />
</Rule>
I wrote the path to get the every nodes which id is greater than equal 50
...
1
vote
1answer
90 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. ...
0
votes
1answer
87 views
Select descendant nodes that have different names using LINQ
I have an XML like this:
<root>
<data>
<_0>
<value1></value1>
<value2></value2>
</_0>
<_1>
<value1></value1>
...
0
votes
2answers
71 views
How can I get the actual displayed text from an HTML TextNode instead of the HTML markup?
I'm trying to turn a DOM node and all its children into a plain text markup of my design. I can use node.childNodes to get a list of all the content and recursively turn it into my string format.
...
0
votes
1answer
113 views
Reading from Xml file and adding to list of list of strings
Trying to read from an XML file that I have on my pc. The function uses a string value to pass the static function. I want to each transaction, create a so called "node" I guess. I want to say Array ...
0
votes
0answers
122 views
How to attach xml schema nodes to word document 2013
I have a problem with word document in 2013 version . I have create a word document template using 2010 (.XSD file) and attach this XSD file to template (in developer tab --> Schema ) this document ...
1
vote
4answers
526 views
Xml node value from an attribute in VB.net
I have a XML like
<Categories>
<category name="a">
<SubCategory>1</SubCategory>
<SubCategoryName>name1</SubCategoryName>
</category>
...
3
votes
1answer
101 views
Accessing an imported element after the original DOMDocument is destroyed
I've been messing around with DOMDocument lately, and I've noticed that in order to transfer elements from one document to the next, I have to call $DOMDocument->importNode() on the target ...
0
votes
0answers
75 views
SelectSingleNode doesn't find node in MSBuild proj file
I am trying to parse MSBuild proj file (which has xml structure)
But it seems like SelectSingleNode method doesn't find node.
I assume it is because of namespace but I am not really sure about the ...
2
votes
2answers
33 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
3answers
92 views
Getting to “bottom” of XmlDocument - C#
I have two versions of XmlDocument
Version 1
<?xml version="1.0" encoding="UTF-8"?>
<topElement>
<childElement1>Value</childElement1>
...
0
votes
0answers
32 views
XML Nodes not working in MS-Office 2002
In my application I need to print the data in a Word Document. I have created a word document Form Template for this to load XML(WorkOrders.xsd file name).
I bind the data through vb.net based on the ...
0
votes
3answers
101 views
Can not get XML attribute value using PHP
<Pages TotalPages="56" ProductCode="Headline" PubDate="2012-01-31" PubVersion="0" PubSubVersion="0" PageWidth="1622" PageHeight="1902">
<Page PageNo="1" PageName="" PageType="" ...
1
vote
3answers
158 views
Can't append XML nodes using jquery parseXML , but can append font
Jquery :
$.get("config.xml",function(xml){
...
1
vote
2answers
70 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 ...
0
votes
3answers
122 views
comparing set of nodes in two xml file with Ant
I am trying to compare two XML files with Ant. My intention is to compare specific nodes inside those XML files rather than complete XMLs.
Please let me know if any one has encountered this and was ...
0
votes
1answer
157 views
Getting node Value of last Child
This question may seem very stupid, but I am not able to find much help on how to find the node value of the last child using PHP, even though it's a piece of cake with JS.
This is what my XML ...
-3
votes
1answer
392 views
How to remove a Node from XML Node List using C#
I am having a XmlNodeList xnlSubParam
XmlDocument xDoc = new XmlDocument();
xDoc.Load(somexml);
XmlNode xnParamList = xDoc.SelectSingleNode("//tag");
...
0
votes
2answers
95 views
Delete a whole Node from an Xml Advertisement file?
I am trying to delete a whole XmlNode which matches a certain condition
The format of my xml file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<Advertisements>
<Ad>
...
0
votes
1answer
298 views
Groovy Node.depthFirst() returning a List of Nodes and Strings?
I'm hoping someone will just point out something obvious that I'm missing here. I feel like I've done this a hundred times and for some reason tonight, the behavior coming from this is throwing me for ...
2
votes
0answers
69 views
C# - using XmlNode class to find acroform or xfa form
I am making use of Xmlnode class to find acroform or xfa form i am thinking the difference as to be something in the xml content what i am trying to find out is the template node
so for example i get ...
0
votes
1answer
74 views
Compare two XMLNodes in C (libxml library)
I'm parsing some xml files in C using libxml library. I want to compare two xmlnodes to see whether they contain the same data or not. Is there any function available to do so?
2
votes
2answers
371 views
Replace XML attribute value
I've been reading about working with XML files for the past couple days and am pulling my hair out.
It seems like it would be simple to get an attribute and change the value but I can't make it ...
1
vote
1answer
173 views
update xml node value by 1 with simplexml. Is it possible?
I have an XML file with the following layout. When a user views a wordpress post, the id get's written to an xml file along with a <postviews> node with a default value of 1 like so…
...
0
votes
1answer
41 views
Access a 2nd level node in XML using Linq to XML
I have the following XML file :
<tree>
<branchs>
<branch id=1>
<apple id=1 color=green/>
<apple id=2 color=red/>
...
1
vote
1answer
125 views
find and add inner level child node if entry is missing using groovy
Using groovy, I am trying to read the tomcat server.xml and insert a new node Resource tag if node <Resource name="jdbc/testDS" auth="Container" ..... > is missing.
Server.xml has hierarchy ...
1
vote
2answers
830 views
Convert org.w3c.dom.Node into Document
I have a Node from one Document. I want to take that Node and turn it into the root node of a new Document.
Only way I can think of is the following:
Node node = someChildNodeFromDifferentDocument;
...
0
votes
0answers
55 views
edit xml file using xmlNode in as3
in flash builder3,get subnode by the following sample,
var xmlList:XMLList=xml.para;
var xmlListD:XMLList=xml.came;
but in flash builder4,the xml class is represented by xmlnode,what I do can get ...
3
votes
1answer
64 views
Has someone run across a way to force PHP SimpleXMLElement node names to upper case?
The API integration documents specify that that all node name are case sensitive. I'm using PHP SimpleXMLElement and I don't see a way to force upper case node names. Has someone run across a way to ...
0
votes
1answer
212 views
WinRT with xsd.exe-generated serialization / no access to System.Xml.XmlNode
I have classes generated via xsd.exe (xsd.exe someschema.xsd /classes). One of the nodes is declared as an element:
<xs:element name="containsxmlelementsbeneath"/>
As the (ficticious) name ...
0
votes
0answers
97 views
vba xml replace node context
I try to replace a destination XML node with a source XML node:
I tried:
destination.childnodes(0).nodetypedvalue=source.childnodes(0).nodetypedvalue
That did work, but the formatting in the XML ...
0
votes
1answer
62 views
XML PHP Table Output Error
here is a part of my code where I extract XML data into a table using PHP. The problem is, the first row in my table is blank, (except for the checkboxes which never leave). Any help would be ...
1
vote
2answers
301 views
XML - How to grab child nodes in single node and not whole document?
Been looking around for an answer and cant find anything - Im quite new so maybe Im not hitting up the right key words?
This is a sample of the XML I am working with
<database>
<book>
...
0
votes
2answers
93 views
remove all HTML Tags from a xmlNode
I have a xml Node as :
<description>
<p>Results of a national survey of 18-35 year old Americans revealed that the next generation of homebuyers are more knowledgeable, responsible and ...



