-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Medium
-
Affects Version/s: 3.3
-
Component/s: None
-
3.03
I did a quick fix - I dont know yet if it works:
private Document getDocument(InputStream is) throws DocumentException
{
SAXReader reader = new SAXReader();
EntityResolver entityResolver = new EntityResolver() {
public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException
};
reader.setEntityResolver(entityResolver);
return reader.read(is);
}