/* (non-Javadoc)
* @see de.innovationgate.wgpublisher.expressions.tmlscript.RhinoExpressionEngine#xpathTMLScriptBean(java.lang.Object, java.lang.String)
*/
public List xpathTMLScriptBean(Object obj, String xpath) throws ExpressionEngineException {
XMLObject xmlObj = (XMLObject) obj;
Document doc;
try {
String xmlText = (String) ScriptableObject.callMethod(xmlObj, "toXMLString", new Object[] {});
doc = DocumentHelper.parseText(xmlText);
}