XPathExpression exp = xpe.createExpression(_queryExpr);
// After 8.3(?) Saxon nodes no longer implement Dom.
// The client needs saxon8-dom.jar, and the code needs
// this NodeOverNodeInfo Dom wrapper doohickey
List saxonNodes = exp.evaluate(rootNode);
for (ListIterator it = saxonNodes.listIterator(); it.hasNext();)
{
Object o = it.next();
if(o instanceof NodeInfo)
{