aalto-xml icon indicating copy to clipboard operation
aalto-xml copied to clipboard

Ultra-high performance non-blocking XML processor (Stax API + extensions)

Results 22 aalto-xml issues
Sort by recently updated
recently updated
newest added

Text stolen from https://github.com/FasterXML/woodstox/issues/51 Apparently there's a JEP to add Yet Another Set of configuration properties (to overlap with existing) ones: http://openjdk.java.net/jeps/185 and since users will be trying to use...

Calling XMLStreamReader.getLocation().getCharacterOffset() works ok for utf-8 xml files. But when file is for instance in iso-8859-2 encoding returned value is less by length of "" prolog. I guess that ReaderScanner...

Stax javadoc says : > String javax.xml.stream.XMLStreamReader.getAttributeValue(String namespaceURI, String localName) > Returns the normalized attribute value of the attribute with the namespace and localName If the namespaceURI is null the...

See e.g.: http://jcenter.bintray.com/com/fasterxml/aalto-xml/1.0.0/ http://jcenter.bintray.com/com/fasterxml/aalto-xml/1.1.0/ E.g. from `aalto-xml-1.0.0-sources.jar`: ` Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: tatu Build-Jdk: 1.7.0_79 Specification-Title: aalto-xml Specification-Version: 1.0.0 Specification-Vendor: FasterXML Implementation-Title: aalto-xml Implementation-Version: 1.0.0...

I need to resolve custom XML entities in some custom event handler/function. Sadly, an unknown entity doesn't trigger the `XMLEvent.ENTITY_REFERENCE` event. If this feature is not implemented, is there any...

I have a file that reports in its prolog definition that it's UTF-16, when it is indeed UTF-8. I've had to copy the parser class and do some ugly hacks...

Validation is not working with an XMLStreamWriter. A quick comparison with woodstox makes obvious that several calls to XMLValidator are missing in StreamWriterBase (at least in writeAttribute(...), writeStartElement(...) and _closeStartElement(...))...

Consider the following setup. * Instantiate an XMLEventReader reading from an xml file, which root element defines an "xmlns" attribute, and contains unprefixed tags. (As an example, you can fetch...

test-needed

Hello. I tried to parse xml with windows-1251, but caught error: com.fasterxml.aalto.WFCException: Unsupported encoding 'windows-1251': only UTF-8 and US-ASCII support by async parser Any plans to support encodings differing from...

About the last thing not yet implemented for non-blocking Stax parser is support for coalescing mode. It seems doable, although non-trivial.