SAX stands for Simple API for XML, and is an event-based way of reading XML data from a document.
1
vote
1answer
23 views
SAX parsing through a jar file declares XML document invalid
The picture is self explanatory. When I validate the document using identical process in CMD, the document is declared valid. It is valid when checked manually.
The jar file generates this ...
0
votes
0answers
29 views
Generic component for XML using SAX parser
I am an Android developer, I have to create a generic component for parsing xml using sax parser. For any kind of schema I should create a common component through which we can parse the xml and save ...
0
votes
0answers
9 views
Methods used to calculate average using SAX parsing
<people>
<name> john </name>
<ranking league = "premier"> 6 </league>
<dob> 1923 </dob>
</people>
<people>
<name> ...
0
votes
0answers
22 views
Adding attributes to element using java sax parser
I have been trying to add attributes to an element but it's not working. I need the XML to be like this:
<team id="01" colored="Y">
<member>
<memberid>01</memberid>
...
0
votes
0answers
21 views
Encountered mixed content within text element Android parser
I want to parse an Xml ,every thing is working fine except that i have nested tags within the xml file , every time the parser reach the root of the nested tag , it generates
...
-1
votes
0answers
30 views
Memory usage in sax parser [closed]
i Am using the sax parser to parse very large XML file my limit for heap size is 512mb.
but the parser shows java.lang.OutOfMemoryError: Java heap space
after almost 70mb of file
and the char[] uses ...
2
votes
1answer
40 views
Java WebService: String XML SAX reading/writing, NOT via file
Researching XML reading/writing by Java/SAX, I found only handling disk files examples - and I need STRING in/out handling. I am coding a WebService with XML input/output, so I need to deal with ...
0
votes
1answer
17 views
Need to extract xsi:type attribute value using SAX parser
I want to extract the xsi:type attribute value from the XML as below
<interface xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SerialInterface">
I want to extract the ...
0
votes
0answers
14 views
readstream pipe does not close
I am using sax-js to read large xml files. I cannot get the program to exit when the parser is finished. Here is the shape of the script, with parser logic removed.
var fs = require('fs');
...
1
vote
1answer
32 views
Using SAX event handlers in Java, How do I keep variables across different events?
Basically I have an XMLfile that looks kinda like this:
<?xml version="1.0" encoding="UTF-8"?>
<DATABASE>
<TABLE>
<TABLENAME>emp</TABLENAME>
<FIELDNAME ...
0
votes
2answers
26 views
SAX - HTML attribute with no value
I am currently using SAX to parse some HTML.
However, I now have to a parse a document that has something like this:
`<OPTION VALUE="123" SELECTED>`
and because SELECTED does not have an ...
0
votes
1answer
35 views
Parse XML files with strange syntax [duplicate]
First: Is there a name for this type of XML syntax? Second: How can I parse XML file like this with Java, I have looked on som SAX examples, but cant figure out how to parse XML files with this type ...
0
votes
0answers
14 views
DOM Document contains no Comment nodes when using xml.sax.make_parser
I'm trying to parse an XML fragment that contains comments. When I use the default parser (by passing None as the parser argument to xml.dom.minidom.parseString) the comment nodes show up in the ...
0
votes
1answer
39 views
XML compiling SAX exception
Here is my xml file:
<?xml version= "1.0" encoding = "windows-1251"?>
<!DOCTYPE jasperReport
PUBLIC "-//JasperReports//DTD Report Design//EN"
...
1
vote
1answer
27 views
Can I add a messageListener to an xslt Template object?
I would like to add a feature to capture xsl:message outputs to an existing application. Found straightforward refs to add messageListener to a transformer but my app consists of a ...
1
vote
0answers
46 views
+50
Using Xerces-j to validate an XML Document
I'm trying to validate an XML document using Xerces-J.
I want the validator to pick up and resolve any associated XSD or DTD files (using schemalocation, nonamespaceschemalocationa and DOCTYPE ...
0
votes
3answers
41 views
Parsing XML using SAX
sample xml ,
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Issue>
<Snippet>
sri;;
hiil
bye;
tc;
...
0
votes
0answers
48 views
Is it better to use StAX over SAX to parse large excel files with Apache POI?
I've implemented something based on this java source code to process XLSX files with the Apache POI library. The program parses using SAX. I was wondering if there are any performance benefits when ...
0
votes
0answers
19 views
Save data parser xml
I have this XML parser and I want to save data for post treatment. Now the data is being saved in Object[]. Could save a new objet, but not sure.
How can I do to save the data collectad while ...
0
votes
0answers
56 views
Scheduler is not working for BI publisher 11.1.1.6 version
I have tried a lot but it is not working for me.
These are the queues and URL i have added in my code.
URL - webservice
Queues - ReportRequest, ScheduleRequest, DeliveryRequest, ParamNameValue, ...
1
vote
1answer
34 views
How to read in xml header/version using python
I'm looking for a way to read in the XML version header using the xml.sax parser in python.
**<?xml version="1.0"?>**
<root>
<child>Hello</child>
...
1
vote
0answers
42 views
SAX: old fasion style + error
I tried read xml file with SAX.
This example is according Sams Teach Yourself XML in 21 Days book.
But compile underline error:
Multiple markers at this line- The method getValue(int) is undefined for ...
0
votes
3answers
44 views
parsing Inner tags of XML file
I need to parse XML file to get the values of tags present in the xml file. I have done it partially and got stuck up in the mid. my xml file is as follows, (sample xml file)
<?xml version="1.0" ...
0
votes
0answers
53 views
How to solve SAXException: Invalid element in
I try to get results from a webservice in the following way.
List result = new Vector();
LibrarySearchRequest request = new LibrarySearchRequest(queryString);
LibrarySearchServicePortTypeProxy proxy ...
0
votes
1answer
27 views
Get column name from rowset schema using SAX
I'm parsing an XML with SAX and so far so good, however this xml is a microsoft schema called rowset, therefore each column is named c0,c1,c2 and so on, however the actual name of the column is stored ...
2
votes
0answers
52 views
Parse KML works ok on java but not in android
I made some classes to read KML files, (using SAX) in Java. I test it, and it works fine.
Then I made my jar, and imported it to android project.
But when I try to read the SAME kML, I don't got any ...
0
votes
2answers
33 views
How to get a clean xml representation from a website url
I'm trying to get a clean representation of a website url, so
I can put the 'html' inside a
org.w3c.dom.Document
to be able to do further processing with xpath and so on.
What I get, when I try ...
1
vote
1answer
86 views
Putting XML elements in JTable
I am trying to parse an xml file with sax parser in Java and then fill a JTable with the XML elements. The parsing is well done, the JTable is created, but the problem is that all the elements are ...
0
votes
1answer
64 views
Serious performance issues with Java SAX
I'm building an application that converts an SVG directly to a PDF. Because the SVGs can get quite large and they can be handled linearly, I decided to implement the XML parser with SAX. However, I am ...
0
votes
0answers
22 views
SAX Parser ignores StartElement
I am using xercesc - SAX Parser to parse the XML content.
i have a XML tag and content like below:
<info>1111 -> 1121</info>
when parsing the above content, the startelement is ...
0
votes
2answers
37 views
can we create an xml using SaxParser
I Have a requirement to merge two xml files by comparing a particular attribute id.I am new to XMLParsing. I used SAXParser to parse the xmls. I don't know how to move forward with the merging thing. ...
0
votes
1answer
56 views
How to start working with SAX, DOM, JAXP and JDOM
I am currently getting started with XML and Java. The author says that I will need DOM, SAX, JAXP and JDOM to work with the examples given.
The book states that DOM and SAX come bundled with a ...
0
votes
1answer
195 views
Convert XML to CSV using SAX Python
I have a XML file which has huge data size.
The XML file is containing
<us-bibliographic-data-grant>
<publication-reference>
<document-id>
...
0
votes
0answers
25 views
How do I know whether Castor uses Xerces for unmarshalling objects from XML by chunks?
I am using Castor to unmarshall XML objects. According to its documentation it uses Xerces parser by default. I would like Castor to unmarshall objects as it parse new elements, and not marshall ...
1
vote
1answer
25 views
SAX Using Multiple DefaultHandler Extensions
The issue I am having is I want to parse out 1 XML document using extensions of the SAX defaultHandler class. When using just one handler I can parse out XML and assign different tags to properties of ...
1
vote
0answers
236 views
SAX: XML document structures must start and end within the same entity
I'm trying to parse (fairly big) XML files using javax.xml.stream.XMLStreamReader. The files are well-formed (validated with xmllint), but still I get the following exception:
...
1
vote
2answers
70 views
sax parser stringbuilder only returning one line [duplicate]
I've tried using a StringBuilder named object, but I'm still not getting all the CDATA from the description tag.The xml is located at Events-Ovations365:
Basically it only gets the CDATA on one ...
2
votes
2answers
66 views
Creating an XML document “SAX style”?
I need to emit a (potentially large) XML document directly to a stream, so I'd like to do it "SAX style" -- in a streaming fashion, where the document is sent over the wire as I go -- as opposed to ...
0
votes
1answer
63 views
Simple HTML parsing with Android?
I have a simple web page I want to scrape with an Android app. Patterns and Regex are obviously out so wondering about a recommendation? SAX, DOM or Jsoup? The HTML I'm working with is only 16K of ...
0
votes
1answer
51 views
Dynamic select options and save in xml file
I have an application where in i got some check box, combo box etc. I need to save the selected data by a user in the form of an XML file at a specified location in my system
And i need to perform ...
4
votes
1answer
80 views
PHP - Read and repair big invalid XML files
I have to read some quite heavy XML files (between 200 MB and 1 GB) that are, for some of them, invalid. Let me give you a small example :
<?xml version="1.0" encoding="UTF-8"?>
<rss ...
0
votes
1answer
38 views
Error in sax parsing Blackberry 7.1
I am trying to use SAX parser in blackberry and used this tutorial :
http://javarevisited.blogspot.com/2011/12/parse-read-xml-file-java-sax-parser.html#ixzz2OZJ6vB8O
and this is the code for my ...
2
votes
1answer
145 views
java sax parser mangles attributes for xml 1.1
I'm using java's sax classes to parse an xml file. If the xml file says version 1.0, everything works fine, but if it says version 1.1, then some of the attributes get mangled, giving me the wrong ...
5
votes
7answers
179 views
Better way to parse xml
I've been parsing XML like this for years, and I have to admit when the number of different element becomes larger I find it a bit boring and exhausting to do, here is what I mean, sample dummy XML:
...
-1
votes
2answers
60 views
From text to XML
I want to know if there is any way to create XML files from .txt by using c++ and libxml ?
input file looks like that :
"< url >..........< / url>
<description>His work points a ...
0
votes
1answer
155 views
Parsing XML to hash with Nori and Nokogiri with undesired result
I am attempting to convert an XML document to a Ruby hash using Nori. But instead of receiving a collection of the root element, a new node containing the collection is returned. This is what I am ...
0
votes
1answer
39 views
SAX find closing Tag
Is there any feasible using the default handler class to find a corresponding XML tag? for example...
<Object class="my class">
<Property>
<Value>1</Value>
...
0
votes
1answer
60 views
Which libxml2 API should I use for large files?
Our program currently uses the libxml2 DOM API (xmlReadFile) to load an entire file into memory. Unfortunately, this breaks down on "large" XML files, as the basic memory consumption of libxml2 DOM is ...
1
vote
1answer
77 views
in JAXB, can I create one Unmarshaller instance and use it to unmarshall xml nodes or files many times?
I use SAX to parse a big xml file which is big and has many many repeated node. And use JAXB to map the parsed and repeated dom nodes to javabeans for persistence.
Here is my code fragment. I use ...
1
vote
3answers
74 views
Finding Closing XML tag
I have an method to print out just the contents between an opening and closing XML tag. I know my XML depth counter is the issue, but I can't figure out where to put it / fix it. Here is the XML.
...





