dom4j issue
Hi all,
I have a xml string which contains the following tag-
<billpay/addglobalpayee xmlPath="config/appconfig" name="billpay/addglobalpayee">
<sometag/>
</billpay/addglobalpayee>
When I try to read the xml(string) using SAXReader and try to capture it in a dom4j document using
Document doc = reader.read(new StringReader(data));
where data is the xml in a string format,
I get the following error.
org.dom4j.DocumentException: Error on line 179 of document : Element type"billpay" must be followed by either attribute specifications,">" or"/>". Nested exception: Element type"billpay" must be followed by either attribute specifications,">" or llpaybillpay"/>".
Can you please help me how to solve this issue?

