Replies: 1 comment
-
I don't think there's a way to set another Sax Parser as default in the SDK. Glad you found the workaround then. This is a duplicate of #2830. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Fasterxml woodstox does not support the sax feature
http://apache.org/xml/features/disallow-doctype-decl
and results in an exception if woodtox is the sax driver found in classpath.
To fix this I had to add the jvm option
-Dorg.xml.sax.driver=org.apache.xerces.parsers.SaxParser
Is there a way to use this as the default - maybe in META-INF?
Beta Was this translation helpful? Give feedback.
All reactions