woodstox icon indicating copy to clipboard operation
woodstox copied to clipboard

The gold standard Stax XML API implementation. Now at Github.

Results 42 woodstox issues
Sort by recently updated
recently updated
newest added

Hello, I have a XML file that has a prolog tagging the document to be in `version=1.0`, even though it contains some entities (namely ``), which do not conform to...

I have to consume a message from a message broker with (sometimes) broken encoding in one of its attributes. (Its from a legacy software that nobody wants/dares to touch.) Currently...

Like asked at Stackoverflow: https://stackoverflow.com/questions/50911195/can-woodstox-error-messages-be-customized Cite of Staxman: > addition of formal error codes in Exceptions seems like a good improvement (Stax spec/API does not have those, but Woodstox implementation...

XSD: ```xml ``` XML: I have to attach my xml file as txt (it is small file, 247 bytes long). This view does not show element when it has attribute...

test-needed

I'm using DTD schema validation with XMLStreamReader2: ``` XMLInputFactory2 inFactory = (XMLInputFactory2)XMLInputFactory2.newInstance(); inFactory.setProperty(XMLInputFactory2.IS_VALIDATING, Boolean.TRUE); inFactory.setProperty(XMLInputFactory2.SUPPORT_DTD, Boolean.TRUE); inFactory.setProperty(XMLInputFactory2.IS_NAMESPACE_AWARE, Boolean.FALSE); String dtdPath = path + ident; InputStream is = Utility.findResource(dtdPath); if (is...

test-needed

For an implementation of a streaming API, it is surprising to observe that the validator loads the entire string content in memory. While the reader gives multiple text events, the...

Consider the following XSD (called idc2.xsd): ``` ``` And the corresponding (invalid) XML (called idc2.xml): ``` 1 1 2 ``` The following pom.xml dependencies I used: ``` com.fasterxml.woodstox woodstox-core 5.0.3...

While it is possible to configure an `XMLResolver` to use for resolving either general parsed entities, or for processing entities only relevant for DTD subsets, when parsing XML documents with...

@cowtowncoder I am trying to switch eXist-db from Xerces to Woodstox (with the SAX API). Xerces has the facility to setup a shared Grammar Pool, by setting the property `http://apache.org/xml/properties/internal/grammar-pool`...

Existing symbol-table implementation uses hashing implementation similar to default JDK `String.hashCode()`. While this has benefits like simplicity, and comparable performance to standard String hashing, there are some well-documented issues regarding...