XPath path = XPathFactory.newInstance().newXPath();
NodeList childNodes;
try {
childNodes = (NodeList) path.evaluate(xpath, xmlDocument, XPathConstants.NODESET);
} catch (XPathExpressionException e) {
throw new ParsingException("Error evaluate xpath",e);
}
return childNodes;
}