An XML parser goes through text documents containing XML trees and allows the information in the hierarchy to be used. Use this tag for problems implementing an XML parser or generated by the use of an existing parser in a given language.
0
votes
0answers
10 views
NewsML: sample examples of NewsML
I am studying about the NewsML. Is there any java tutorials or sample applications for NewsML?
Thanks.
-1
votes
1answer
39 views
Parsing XML Always Returns Null
I have an XML file containing data I need to parse in my application however the values are continuously appearing null when I attempt to debug although I've verified I can access the XML file on the ...
0
votes
1answer
21 views
How do I parse XML stream from the NetworkStream via ReadAsync of XmlReader im C#?
I am trying to read in XML that I receive as NetworkStream from an OpenFire server via BeginRead of the NetworkStream class in C# with following code (I call it every 1024 bytes to give it more XML ...
0
votes
1answer
25 views
Parse xml with Jquery and Javascript
I would like to parse the following xml flow :
<telhdl:leg>
<tel:deviceId>82085625</tel:deviceId>
<tel:media>AUDIO</tel:media>
...
0
votes
0answers
8 views
Checking two xmls with Java for automated soap testing
i want to write my own testtool which sends some soap requests and checks against expected parameters which are written into an excel sheet.
Now i got a problem that some of my soap answers have tags ...
0
votes
5answers
46 views
Read the XML with different elements in C#
I know, that there are a lot of question about parsing C#, but I couldn't find answer.
So, I need to write a DLL for parsing XML, but with some features, as I don't know what elements are in XML file. ...
0
votes
1answer
19 views
XML parsing with namespaces
I have this sample code which parses XML weather data from yahoo, what I have to do it simplify it somehow, and possibly make it in a loop, but I can't figure out how. The XML have namespaces and ...
0
votes
1answer
43 views
Java iterative reading of Files
at the moment I'm having a problem with writing a tool for my company. I have 384 XML files that i have to read and parse with a SAX Parser into txt files.
What i got until now is the parsing of all ...
1
vote
1answer
9 views
Parse attribute of Media Element
I want to parse url attribute from the XML and show image in image control (the one reffered to by the URL) in listbox from the following feed link: http://feeds.bbci.co.uk/news/rss.xml
My code is:
...
0
votes
2answers
38 views
getting the value from xml feed in android
I have developing one android application.
i have passing the xml tags.
Here i have facing some problems.please give me a solution for these .
These is my xml feed :
<root>
...
0
votes
1answer
9 views
Using Kernow 7.1 to convert XML files and getting the following error
While using Kernow 7.1 to convert XML files, the following exception was thrown:
net.sf.saxon.trans.XPathException: Error reported by XML parser
org.xml.sax.SAXParseException: XML document structures ...
0
votes
0answers
14 views
Complex type mapping via linq to xml
I have a list of contacts in XML file.
Each contact have a few properties and mdpr:connection in it.
Connection is separate object.
I read this list and get all contacts to a list with standard ...
1
vote
3answers
36 views
Cant get list from received XML file
This is xml that I receive:
<?xml version="1.0" encoding="UTF-8"?>
<mdpr:Data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mdpr="http://...">
<mdpr:contactList>
...
1
vote
1answer
32 views
Reading regular expression from XML using XPATH in Java
I have a set of regular expressions which are stored in a XML file, and i have a string that has to be matched against these regular expressions. To read the regular expressions , i am using XPath.
...
1
vote
1answer
29 views
Looking for an xpath query to select elements in an XML file that have a certain attribute, regardless of the value
I have an XML file loaded into the PHP DOM manipulation system something like this:
$xml = file_get_contents('something.xml');
$dom = new DOMDocument();
$dom->loadXML($xml);
In the XML files are ...