//===========================================================
// Resolver methods
//===========================================================
InputSource is = null;
try {
InputStream i = this.getClass().getResourceAsStream(SUN_ACC_DTD_PATH );
if( i!= null ) {
return new InputSource(i);
}
is = new InputSource(
new FileInputStream(
new File(new java.net.URI(
RelativePathResolver.resolvePath(systemID)))));
} catch(Exception e) {
throw new SAXException("Cannot resolve ", e);
}
return is;