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
3 views
Is it possible to dynamically specify the location of an external entities file?
I have some generic XML snippets that need to use different entities files depending on the context (project) they are using in. I don't want to copy/paste them all over the place, duplicating the ...
1
vote
0answers
10 views
XML file content display on HTML page
I have xml url and i want to display content from that url to my html page. Here is the code i was trying to make it happend.
<head>
<script ...
-1
votes
3answers
16 views
XML file erroring due to certain characters in strings
I have an XML file that pulls from a database. I'm getting an error on certain strings and URL's because it contains characters that the XML is treating like code and either gives a syntax error or ...
3
votes
2answers
21 views
LuaXML parse the XML with multiple tags with the same name
I'm trying to parse data from XML files like
<level>
<bg>details1</bg>
<bg>details2</bg>
</level>
With xml.find(bg) I can only get details 1 out. It's ...
0
votes
1answer
5 views
DocumentBuilder FileNotFoundException when parsing xml String using continuous deployment on tomcat
I have a utility class that converts an Object into an xml String and then builds a pdf out of it.
The class was working fine but I recently started to use continuous deployment on Tomcat (i.e. ...
0
votes
0answers
36 views
XML parsing project in Java
I'm writing this message because I would like to ask you some help to create a parser in java for the following XML :
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<phyloxml ...
1
vote
3answers
34 views
Reading XML in AS3
I have the following xml from a large xml file.
<Text>
<cp IX='0'/>
<pp IX='0'/>
<tp IX='0'/>Wo<cp IX='1'/>rl<cp IX='2'/>d<cp IX='3'/>
<cp ...
0
votes
1answer
33 views
Convert Byte Data to image from XML Parsing
I want to convert this byte data to fetch an image from it.
i have used this base64Encoding method but this does not seem to be useful.
-(UITableViewCell*)tableView:(UITableView *)tableView ...
0
votes
0answers
25 views
DOM XML Parsing android
I am NEW in Android. I create one of the application for xml parsing.But there occur some errors.It is stopped unexpectedly. I tried my best .But i can't solve the problem.Please help me.
...
0
votes
0answers
13 views
What is the best way to pars XForms on android?
Here's how it looks
<formlist>
<form url="url1" formid="1">Test1</form>
<form url="url2" formid="2">Test2</form>
<form url="url3" ...
1
vote
0answers
18 views
MSXML2.DOMDocument Object required error if file extension is not .xml
Working on an application to retreive shipping rates as XML from a web service. The web service is PHP based. The client is VB Script, specifically HTA.
During initial development I used an XML ...
0
votes
1answer
28 views
What is an XML Parser error out of allowed range and invalid element name?
I am getting this error in the log:
Entity: line 2: parser error : Char 0x0 out of allowed range
<
^
Entity: line 2: parser error : StartTag: invalid element name
<
^
Here is the local code ...
0
votes
1answer
15 views
Android - Simple XML Framework. @Convert interferes with @Attribute - How to solve this?
I was working on capturing the order of elements contained in tag. Here is all the code:
League.java:
@Root
@Convert(value = LeagueConverter.class)
public class League
{
@Attribute
private ...
0
votes
0answers
12 views
XML import to PHP with empty tags
I have a script to import an XML file from a source that I cannot edit (XML file is supplied to me by a third party company and the data changes hourly - they say they can't change the XML file).
...
0
votes
2answers
19 views
RapidXML Access individual attribute value using the previous attribute value?
I am using rapidXML and C++ in VS2012 on PC. I have already parsed the XML file, but now I want to print out attribute values individually. I am usually able to do this using the code below. This ...