DOMUtil.setSelectionNamespaces(xmlBlock.getDocument(),getNamespaceContext());
// Extract the entry nodes
String xpathExpr=getEntryXPath();
if(StringUtil.isNotEmpty(xpathExpr)) {
XResult r = DOMUtil.evaluateXPath(xmlBlock.getDocument(),xpathExpr);
xmlBlock.nodes = r.getNodes();
} else {
xmlBlock.nodes = getRootNodes(xmlBlock.getDocument());
}
// Extract the total count
String countXPath=getTotalCountXPath();