Tagged Questions

SAX stands for Simple API for XML, and is a way of reading XML data from a document.

learn more… | top users | synonyms

148
votes
16answers
164k views

How to call SOAP web service with Android

I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
23
votes
3answers
6k views

XML parsing - ElementTree vs SAX and DOM

Python has several ways to parse XML... I understand the very basics of parsing with SAX. It functions as a stream parser, with an event-driven API. I understand the DOM parser also. It reads the ...
12
votes
11answers
4k views

Is it there any XPath processor for SAX model?

I'm looking for an XPath evaluator that doesn't rebuild the whole DOM document to look for the nodes of a document: actually the object is to manage a large amount of XML data (ideally over 2Gb) with ...
11
votes
4answers
357 views

When should I choose SAX over StAX?

Streaming xml-parsers like SAX and StAX are faster and more memory efficient than parsers building a tree-structure like DOM-parsers. SAX is a push parser, meaning that it's an instance of the ...
10
votes
2answers
1k views

Efficient XSLT pipeline in Java (or redirecting Results to Sources)

I have a series of XSL 2.0 stylesheets that feed into each other, i.e. the output of stylesheet A feeds B feeds C. What is the most efficient way of doing this? The question rephrased is: how can ...
9
votes
1answer
5k views

How to parse XML using the SAX parser

I'm following this tutorial. It works great but I would like it to return an array with all the strings instead of a single string with the last element. Any ideas how to do this?
9
votes
6answers
11k views

Parsing very large XML documents (and a bit more) in java

(All of the following is to be written in Java) I have to build an application that will take as input XML documents that are, potentially, very large. The document is encrypted -- not with XMLsec, ...
9
votes
4answers
7k views

SAX vs XmlTextReader - SAX in C#

I am attempting to read a large XML document and I wanted to do it in chunks vs XmlDocument's way of reading the entire file into memory. I know I can use XmlTextReader to do this but I was wondering ...
8
votes
3answers
560 views

Use CSS selectors to collect HTML elements from a streaming parser (e.g. SAX stream)

How to parse CSS (CSS3) selector and use it (in jQuery-like way) to collect HTML elements not from DOM (from tree structure), but from stream (e.g. SAX), i.e. using sequential access event based ...
8
votes
3answers
503 views

Why is Moose code so slow?

I'm trying to parse a large XML file. I read it using XML::SAX (using Expat, not the perl implementation) and put all the second level and below nodes into my "Node" class: package Node; use Moose; ...
8
votes
2answers
351 views

How can I force a SAX parser to use a DTD if one is not specified in the input file?

How can I force a SAX parser (specifically, Xerces in Java) to use a DTD when parsing a document without having any doctype in the input document? Is this even possible? Here are some more details ...
8
votes
1answer
11k views

Android - Parse XML string

Is there any way to parse a xml string using Android SAX? Thanks in advance, Best regards!
7
votes
4answers
384 views

Parsing an XML stream with no root element

I need to parse a continuous stream of well-formed XML elements, to which I am only given an already constructed java.io.Reader object. These elements are not enclosed in a root element, nor are they ...
6
votes
4answers
355 views

Java SAX parser progress monitoring

I'm writing a SAX parser in Java to parse a 2.5GB XML file of wikipedia articles. Is there a way to monitor the progress of the parsing in Java?
6
votes
1answer
2k views

Android SAX parser not getting full text from between tags

I've created my own DefaultHandler to parse rss feeds and for most feeds it's working fine, however, for ESPN, it is cutting off part of the article url due to the way ESPN formats it's urls. An ...
6
votes
2answers
3k views

How to stop parsing xml document with SAX at any time?

I parse a big xml document with Sax, I want to stop parsing the document when some condition establish? How to do?
6
votes
8answers
2k views

A lightweight XML parser efficient for large files?

I need to parse potentially huge XML files, so I guess this rules out DOM parsers. Is out there any good lightweight SAX parser for C++, comparable with TinyXML on footprint? The structure of XML is ...
6
votes
2answers
2k views

How to use SAXParseException effectively in Java

I'm validating against XMLSchema in Java, and getting SAXParseExceptions thrown when I have non-valid content models. I'm going to be using these exceptions to highlight where the validation has ...
6
votes
3answers
2k views

What ever happened to XPathReader

XPathReader is/ was an implementation of a forward reading XML parser (built on XMLReader) which allowed you to register XPath queries for it to find (or at least a subset of XPath called Sequential ...
5
votes
3answers
254 views

How to combine large XML files using MSXML SAX in Delphi

What is the best way to do a simple combine of massive XML documents in Delphi with MSXML without using DOM? Should I use the COM components SAXReader and XMLWriter and are there any good examples? ...
5
votes
4answers
2k views

SAX parser: Ignoring special characters

I'm using Xerces to parse my xml document. The issue is that xml escaped characters like ' ' appear in characters() method as non-escaped ones. I need to get escaped characters inside ...
5
votes
1answer
350 views

Processing a large xml file with perl

I have an XML file which is about 200MB in size, i wish to extract selected information on a line by line bases. I have written a script with perl using the module XML::LibXML to parse the file ...
5
votes
5answers
787 views

Parse large RDF in Python

I'd like to parse a very large (about 200MB) RDF file in python. Should I be using sax or some other library? I'd appreciate some very basic code that I can build on, say to retrieve a tag. Thanks in ...
5
votes
1answer
285 views

Java XML Parsing and original byte offsets

I'd like to parse some well-formed XML into a DOM, but I'd like know the offset of each node's tag in the original media. For example, if I had an XML document with the content something like: ...
5
votes
1answer
2k views

Howto let the SAX parser determine the encoding from the xml declaration?

I'm trying to parse xml files from different sources (over which I have little control). Most of the them are encoded in UTF-8 and don't cause any problems using the following snippet: ...
5
votes
2answers
1k views

Using SAX to parse common XML elements

I'm currently using SAX (Java) to parse a a handful of different XML documents, with each document representing different data and having slightly different structures. For this reason, each XML ...
5
votes
3answers
3k views

How to tell Java SAX Parser to ignore invalid character references?

When trying to parse incorrect XML with a character reference such as &#x1, Java's SAX Parser dies a horrible death with a fatal error such as org.xml.sax.SAXParseException: Character ...
5
votes
4answers
2k views

How to select saxon TransformerFactory in Java

In my web application I need to use Saxon TransformerFactory to use XSLT 2.0 but I can't use setProperty method because I haven't this right on the web server and there is a Security Manager. So i ...
5
votes
3answers
658 views

Java. Sax parser. How to manually break parsing?

Tell me please is it possible to break the process of parsing? I.e. exit this loop not reaching the end of document and corresponding event "endDocument" ?
5
votes
1answer
2k views

Difference in DocumentBuilder.parse when using JRE 1.5 and JDK 1.6

Recently at last we have switched our projects to Java 1.6. When executing the tests I found out that using 1.6 a SAXParseException is not thrown which has been thrown using 1.5. Below is my test ...
5
votes
3answers
2k views

Parsing broken XML with lxml.etree.iterparse

I'm trying to parse a huge xml file with lxml in a memory efficient manner (ie streaming lazily from disk instead of loading the whole file in memory). Unfortunately, the file contains some bad ascii ...
5
votes
8answers
961 views

Dom Vs Sax - creating Xmls

I know the difference between Sax and Dom is pretty substantial regarding parsing Xml, but what about creating ones ? is there even a way to create new Xml using Sax or that if i want to create new ...
5
votes
5answers
3k views

Is XPath much more efficient as compared to DOM and SAX?

I need to parse an xml string and find values of specific text nodes, attribute values etc. I'm doing this in javascript and was using the DOMParser class for the same. Later I was informed that DOM ...
5
votes
5answers
835 views

RE: Big XML file

Followup question to Big XML File: First thanks a lot for yours answers. After… what I do wrong? This is my class which uses SAX: public class SAXParserXML extends DefaultHandler { public static ...
4
votes
6answers
96 views

Java SAX Parsing

There's an XML stream which I need to parse. Since I only need to do it once and build my java objects, SAX looks like the natural choice. I'm extending DefaultHandler and implementing the ...
4
votes
3answers
82 views

How to use SAX on this xml file

I have an XML file that I am trying to parse with Sax (this is my first time doing this). I've researched how to implement the parser, and that all makes sense, but I'm unsure of the best way to ...
4
votes
2answers
522 views

Java XMLReader not clearing multi-byte UTF-8 encoded attributes

I've got a really strange situation where my SAX ContentHandler is being handed bad Attributes by XMLReader. The document being parsed is UTF-8 with multi-byte characters inside XML attributes. What ...
4
votes
1answer
603 views

java (jaxp) xml parsing differences of DocumentBuilder

Is there any kind of difference between 1) DocumentBuilder.parse(InputStream) and 2) DocumentBuilder.parse(InputSource)? I could only find that for the first case, the parser detects the encoding from ...
4
votes
2answers
657 views

Parsing an XML structure with an unknown amount of recursions using SAX

I have to parse a XML structure in JAVA using the SAX parser. The problem is that the structure is recursive with an unspecified count of recursions. This still is not such a big deal, the big deal ...
4
votes
2answers
394 views

XML SAX parser for scripting using reflection

I'd like an opinion about to create an hypothetic scripting system using XML. The idea is to use a SAX parser and C# reflection. I cannot find a library/framework which allow to specify custom action ...
4
votes
1answer
1k views

Using SAX (Java) to parse multiple XML messages from a single TCP-stream

I'm in a position where I use Java to connect to a TCP port and am streamed XML documents one after another, each delimited with the <?xml start of document tag. An example which demonstrates the ...
4
votes
2answers
5k views

Ignoring “Content is not allowed in trailing section” SAXException

I'm using Java's DocumentBuilder.parse(InputStream) to parse an XML document. Occasionally, I get malformed XML documents in that there is extra junk after the final > that causes a SAXException: ...
4
votes
3answers
8k views

Parse XML file on BlackBerry

I want to know how to parse XML data on a BlackBerry. I read somewhere that JSON is good method to parse xml data. Are there any tutorials to parse XML data using JSON, or any other mechanism?
4
votes
3answers
681 views

Parsing of badly formated HTML in PHP

In my code I convert some styled xls document to html using openoffice. I then parse the tables using xml_parser_create. The problem is that openoffice creates oldschool html with unclosed <BR> ...
4
votes
4answers
416 views

How can I process xml asynchronously in python?

I have a large XML data file (>160M) to process, and it seems like SAX/expat/pulldom parsing is the way to go. I'd like to have a thread that sifts through the nodes and pushes nodes to be processed ...
4
votes
2answers
3k views

Java: Saving StreamResult to a file

I am doing some data conversion(like csv) to xml with SAX then using transformer in Java. The result is in StreamResult, and I am trying to save this result to a file.xml but I can't find way to save ...
4
votes
1answer
1k views

jaxb unmarshal abusable by crafted xml when using default sax parser?

So in my current project I use the JAXB RI with the default Java parser from Sun's JRE (which I believe is Xerces) to unmarshal arbitrary XML. First I use XJC to compile an XSD of the following form: ...
4
votes
2answers
1k views

Using XML parser implementation as OSGi service

I am developing an application using OSGi (Equinox platform), and one of the bundles needs to parse XML files. So far I implemented this with SAX (javax.xml.parsers.SAXParserFactory) and I would like ...
3
votes
1answer
79 views

Storing specific XML node values with R's xmlEventParse

I have a big XML file which I need to parse with xmlEventParse in R. Unfortunately on-line examples are more complex than I need, and I just want to flag a matching node tag to store the matched node ...
3
votes
1answer
50 views

simple doubt when using sax parser (Xerces) in java

I am trying to obtain some data from an xml file using a SAX parser in java- I dont want to do anything for certain elements within the xml (ie ignore them, because I dont require those elements). Do ...

1 2 3 4 5 12