DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
Document doc = factory.newDocumentBuilder().newDocument();
doc.appendChild(doc.createElement("root"));
iterator = new FollowingSiblingAxisIterator(doc, new org.jaxen.dom.DocumentNavigator());
}