Dennis Sosnoski

Results 1 issues of Dennis Sosnoski

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