// Load an XPath factory. This should load the Saxon schema-aware factory if everything has
// been configured correctly.
//XPathFactory xpf = XPathFactory.newInstance(NamespaceConstant.OBJECT_MODEL_SAXON);
XPathFactory xpf = new SchemaAwareXPathFactory();
XPath xpe = xpf.newXPath();
System.err.println("Loaded XPath Provider " + xpe.getClass().getName() +
" using factory " + xpf.getClass().getName());
// Check that we really have loaded a schema-aware XPath processor