"<xmlBlaster></xmlBlaster>";
java.io.StringReader reader = new java.io.StringReader(xml);
org.xml.sax.InputSource input = new org.xml.sax.InputSource(reader);
try {
DocumentBuilderFactory dbf = requestBroker.getServerScope().getDocumentBuilderFactory();
//dbf.setNamespaceAware(true);
//dbf.setCoalescing(true);
//dbf.setValidating(false);
//dbf.setIgnoringComments(true);
DocumentBuilder db = dbf.newDocumentBuilder ();
xmlKeyDoc = db.parse(input);
} catch (Exception e) {
log.severe("Problems when building DOM tree from your XmlKey: " + e.toString());
throw new XmlBlasterException(serverScope, ErrorCode.INTERNAL_ILLEGALSTATE, ME, "Problems when building DOM tree from your XmlKey: " + e.toString());
}