//input.setSystemId("9999999999");
final String ME = "DOMParser";
if (glob == null) glob = Global.instance();
try {
DocumentBuilderFactory dbf = glob.getDocumentBuilderFactory();
DocumentBuilder db = dbf.newDocumentBuilder();
return db.parse(input);
} catch (javax.xml.parsers.ParserConfigurationException e) {
log.severe("Problems when building DOM parser: " + e.toString() + "\n" + xmlKey_literal);
throw new XmlBlasterException(glob, ErrorCode.RESOURCE_CONFIGURATION, ME, "Problems when building DOM tree from your XML-ASCII string\n" + xmlKey_literal, e);
} catch (java.io.IOException e) {