* @throws SAXException if an exception occurs during XML parsing
* @throws IOException if an i/o exception occurs
*/
public static Document makeDomFromResourcePath(String path, boolean namespaceAware)
throws ParserConfigurationException, SAXException, IOException {
ResourcePath rp = new ResourcePath();
return makeDom(rp.makeInputSource(path),namespaceAware);
}