Top "Saxparser" questions

SAX (Simple API for XML) is an event-based parser for XML documents.

Why am I getting "MalformedURLException: no protocol" when using SAXParser?

I'm copying code from one part of our application (an applet) to inside the app. I'm parsing XML as a …

java xml saxparser
using SAX parser, how do you parse an xml file which has same name tags but in different elements?

Is it possible to give path expressions in SAX parser? I have an XML file which has a few same …

java xml xpath xml-parsing saxparser
SAX parser vs XMLPull parser

I understand the difference between how the SAX parser works vs the XMLPull parser. In fact there's a pretty good …

android xml saxparser xmlpullparser
SAXParser equivalent in C#

I have below java code , I need to convert these in C#, Kindly help me .. public class Configuration { private ConfigContentHandler …

c# saxparser
Difference among XML SAX parser, Pull parser & DOM Parser in android

I want to know what's the difference between XML SAX parser, Pull parser & DOM parser in Android. In which …

android saxparser xmlpullparser domparser
How to set FEATURE_SECURE_PROCESSING in XMLReaderFactory?

I am using Piccolo jar and creating XML reader using XMLReaderFactory. I need to set the secure processing feature and …

java xmlreader saxparser
How to read the child nodes from XML using DOM or SAX parser in android

This is my XML. <Operations> <Operation Name="OperationName1">Entity details1</Operation> <Operation Name="…

java android xml-parsing saxparser domparser
How to get "xmlns:XXX" attribute if set setNamespaceAware(true) in SAX?

Here is my code: path = wsdlPath; SAXParserFactory saxfac = SAXParserFactory.newInstance(); saxfac.setNamespaceAware(true); saxfac.setXIncludeAware(true); saxfac.setValidating(false); SAXParser …

java xml namespaces saxparser
What is 'Push Approach' and 'Pull Approach' to parsing?

Under the push parsing approach, a push parser generates synchronous events as a document is parsed, and these events can …

java xml saxparser stax
Solve security issue parsing xml using SAX parser

I have an android app, in which user can enter any xml source url to parse. My app then parses …

java android xml security saxparser