An XML parser goes through XML trees and extracts the information
0
votes
2answers
17 views
How get tag value using DOM parser
I use dom parser in my app. So. i have next situation:
XML:
<test>
<A>
<B>hello</B>
world
</A>
</test>
Code:
private TagA parseTagA(Node ...
0
votes
1answer
17 views
Efficiency/Performance of Traversal Using XElement
I am working on a way to parse data using xml.
The file that I am given contains lines that look like this:
George | Washington | Carver
or someone else can send me someting like this
Carver | ...
0
votes
0answers
2 views
How to Expand Hash array to xml using xmlout()
I have a perl class that is storing the information of a graph nodes and edges parents etc.
The class itself is a hash table. Within the class there is one scalar and two arrays of hash tables where ...
0
votes
0answers
13 views
How to change a certain part of XML file using XSL.?
Have a RSS feed xml file
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<item>
<title>news title 1</title>
...
-1
votes
0answers
11 views
How to parse rss flow (XML) using SAX (StartElement and EndElement) in Android
I am tring to parse a flow with a rssHandler class in my android app.
I have follow this tutorial : http://blog.nerdability.com/2013/03/tech-building-rss-reader-android-app.html
I would like to ...
0
votes
0answers
21 views
Retrieve XML - TChromium web Browser
In Delphi XE I am loading a url using TChromium WebBrowser. A XML file is returned, however I am not sure how I can retrieve the XML file or String so that I can begin parsing it.
I have tried ...
0
votes
2answers
27 views
How to parse and extract a specific element from a HTML document in Python?
There are lots of XML and HTML parsers in Python and I am looking for a simple way to extract a section of a HTML document, preferably using an XPATH construct but that's only optional.
Here is an ...
0
votes
2answers
23 views
Extra Brackets in Java using Dom Parser
Im trying to use DomParser, to parse a file with output like:
<XGuideWCSResponse xmlns="urn:com:x:presentationflow:spps:services:Xguide" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
...
0
votes
3answers
27 views
Jquery - How to split and get the actual data from an XML file.?
Want to split and get the actual data from an XML, where multiple records exists.
XML
<description>
<div><b>Article_Title:</b> Title_Content</div>
...
0
votes
1answer
19 views
Load an XML string into a Vaadin Tree
I am doing a project in Vaadin and need to do the following. I make a server request and get an XML string in response. And, I know nothing about how this XML file will look at run time. I need to ...
0
votes
1answer
17 views
XML parsing error in PHP after CURL
I have obtained such a response after executing one curl request.
<?xml version="1.0" encoding="utf-8"?>
<mp_response>
<response_element>
<merchantid>
36573dkjdkjds3987398
...
-1
votes
2answers
17 views
Why is it so difficult to convert XML to pdf?
Could anybody explain to me why is it so complicated to create a pdf file from xml sheet? Acrobat can create XML File but when I want to do this other way round it suddenly gets complicated. I would ...
0
votes
1answer
28 views
XPathEvaluate does not evaluate a valid XPath
Sample xml:
<pr:InquiredPersonCode xmlns:pr="http://some/XMLSchemas/PR/v1-0" xmlns:epcs="http://some/XMLSchemas/EP/v1-0">
<pr:PersonCode>111</pr:PersonCode>
...
-2
votes
0answers
18 views
How to set multiple Listbox navigation in windows phone?
Hi i am developing windows phone application.I want to display following things like nested list. 1.categories list ,2.selected subcategories list, 3.selected product list and 4.selected product ...
0
votes
0answers
14 views
Parse xml in android without having parent/root node
I am getting the below xml as API result, now i want to parse it in android.
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">Hello chitranjan</string>
...