Load XML Errors( Error type: DataStructure Description: XML

in the file id ok

===================================================================

<?xml version="1.0" encoding="utf-8"?>





    

    

    

    



    

    





===================================================================

but if i use jsp to out,the errors is out, help…

===================================================================

js code:

===================================================================

tree=new dhtmlXTreeObject(“systemmenu”,“100%”,“100%”,1);

tree.setImagePath(“<%=path%>/resource/feohoojs/tree/imgs/csh_scbrblue/”);

//tree.loadXML(“<%=path%>/resource/feohoojs/tree/xml/tree_b.xml”);    //is ok, the same code        

tree.setXMLAutoLoading(“<%=path%>/projectmenu.do”);

tree.loadXML(“<%=path%>/projectmenu.do”);

The top level ID in XML and ID assigned to the tree are not equal�tree=new dhtmlXTreeObject(“systemmenu”,“100%”,“100%”,1); // <= you set top level ID as 1 <= in XML you have top level ID as 0

thank you !