| Author: Lalji 05 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
the message is as it says... you can't have a processing instruction starting with xml in an XML document most likely you have an xml declaration inside your XML document this error usually happens because of two reasons - you have two xml declarations - you have white-space before the xml declaration. the xml declaration is optional, so if the parser finds a space it assumes the document is started and then finds the xml declaration which causes the above error
more reference might be help -------------------------- http://www.anujgakhar.com/2009/02/17/the-processing-instruction-target-matching-xxmmll-is-not-allowed/
http://www.bennadel.com/blog/58-The-Processing-Instruction-Target-Matching-xX-mM-lL-is-Not-Allowed.htm
|