Subject:FATAL ERROR: Expected comment or processing instruction Author:ManojKumar Chinnaraj Date:21 Aug 2007 01:43 AM
I am getting this error because my XMl code is like this:
<Start>
<authors>
<author>Chappel</author>
<author>Tyler</author>
</authors>
</Start>
<Start>
<authors>
<author>David</author>
<author>Jewell</author>
</authors>
</Start>
but in my code start is the heading comment...
Subject:FATAL ERROR: Expected comment or processing instruction Author:Minollo I. Date:21 Aug 2007 08:35 AM
Your XML document is not well formed; you have two root elements (Start); you will need to change into something like:
<root>
<Start>
<authors>
<author>Chappel</author>
<author>Tyler</author>
</authors>
</Start>
<Start>
<authors>
<author>David</author>
<author>Jewell</author>
</authors>
</Start>
</root>