String docBxml = sw.toString();
StringBuffer buf = new StringBuffer();
comparator.compare(docAxml, docBxml, buf);
StringReader sr = new StringReader(buf.toString());
XdmNode doc = runtime.parse(new InputSource(sr));
result.write(doc);
} catch (Exception e) {