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

With non-blocking Stax implementation, it should be relatively easy to add interface for doing non-blocking SAX parsing -- feed block of content, which triggers all SAX callbacks, returns. The main...

# Reproduce code ``` import com.fasterxml.aalto.util.*; public static void main (String[] args) { textAccumulator = new TextAccumulator(); char[] buf = new char[1840165617]; textAccumulator.addText(buf, 0, buf.length); } ``` # Output ```...

# Reproduce code ``` import com.fasterxml.aalto.util.*; public static void main (String[] args) { String[] arr = new String[959985462]; String [] result = DataUtil.growArrayBy(arr, 892613426); } ``` # Output ``` Exception...

I encountered the following issue with version 1.3.1. When handling a DTD event and I try to access the name of the DTD root element via AsyncXMLStreamReader, the root name...

See https://github.com/FasterXML/jackson/discussions/152

I have an entity with no attributes. But `getValue("SomeKey")` is returning a value from a previous element. I think the problem is that these lines https://github.com/FasterXML/aalto-xml/blob/0820590fcf56ec3d5ca14608d6145e14e56f2650/src/main/java/com/fasterxml/aalto/sax/SAXParserImpl.java#L654-L666 Are missing the `...

Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 4.1.6 to 4.1.7 Release notes Sourced from actions/checkout's releases. v4.1.7 What's Changed Bump the minor-npm-dependencies group across...

dependencies

Fix for: `https://github.com/FasterXML/aalto-xml/issues/97` - alto.in.NsBinding#createDefaultNs now uses XMLConstants.DEFAULT_NS_PREFIX as prefix. - added tests with expected behaviour after fix - com.fasterxml.aalto.in.NsBindingTest - com.fasterxml.aalto.in.FixedNsContextTest