XML DTD issue - Space required after the element..
Source:
Below xml was causing the headache!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties[<!ELEMENT node (#PCDATA)>
<!ELEMENT name(#PCDATA)>
<!ELEMENT id (#PCDATA)>
<!ELEMENT path (#PCDATA)>
<!ELEMENT icon16 (#PCDATA)>
<!ELEMENT icon32 (#PCDATA)>
<!ELEMENT isFolder (#PCDATA)>
Cause??
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties[<!ELEMENT node (#PCDATA)>
<!ELEMENT name(#PCDATA)>
Watch out!! :)