* to parse the input for the xml document.
* @throws org.xml.sax.SAXException Thrown if an exception occurs while parsing
* the xml document.
*/
public void configure(String xml, Object obj, String xpath) throws XPathNotFoundException, XmlBeanException, IOException, SAXException {
XmlParser parser = new XmlParser();
XmlParser.Node rootNode = parser.parse(xml);
configure(rootNode, obj, xpath);
}