2
votes
3answers
46 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> ...
1
vote
1answer
54 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
65 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 = ...
0
votes
3answers
102 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="" ...
0
votes
1answer
308 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 ...
1
vote
1answer
2k views

Need C# solution to read xml element value

I have a complex structure xml from which I need to read some element value. My xml is somewhat like this: <plist version="1.0"> <dict> <key>XYZ</key> <dict> ...
0
votes
0answers
56 views

how to move data from one xml tag to another

i have the following xml code. <item><cat>english</cat><Q>what is frequency?</Q><A>1823 module ;; intrinsic monic.</A></item> the code above belongs ...
0
votes
1answer
448 views

SQL XML select multiple attributes

i just need your help. I was looking for a solution, but nothing works yet. I have to select multiple attributes from the xml-file which is stored in a column of my table. This is the File: ...
1
vote
1answer
451 views

How to get invalid XMLNode in XmlReaderSettings.ValidationEventHandler in C#

I am trying to construct a custom Error Message for unsuccessful XML validation using the callback validation event. I noticed that the sender object of the element is XMLReader and i got the Element ...
0
votes
1answer
49 views

how to parse one integer node

I am new to the iPhone development and I need to parse one integer node from an xml file like this: <numbers> <current_number>1</current_number> </numbers> How can I ...
0
votes
3answers
205 views

Extracting the value of nodes from xml

I have two different XML files , the first one is a template xml and the second one is the actual xml. The template xml contains only the elements where as the actual xml contains some of the elements ...
0
votes
1answer
252 views

how to process an XML NODE in PHP

here is the simple code. i just want to know how to process the node that is being returned by $reader->expand(); <?php $reader = new XMLReader(); if (!$reader->open("data.xml")) { ...
0
votes
0answers
583 views

Inserting xml element in xml document.

I have a XML document and I want to put new node in certain position. I'm writing code in vb.net. So What I want is just to insert element that holds the group of elements.I'm getting the object ...