On 4/10/06, Qaiser Mehmood <[EMAIL PROTECTED]> wrote:
>
> Hi ,
>
>
>
> I am trying to parse this XML File to a Java Bean and getting this error
> :
>
>
>
> Apr 10, 2006 2:25:26 PM org.apache.commons.digester.Digester fatalError
>
> SEVERE: Parse Fatal Error at line 1 column 1: The root element is
> required in a well-formed document.
>
> org.xml.sax.SAXParseException: The root element is required in a
> well-formed document.
>
> at
> org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1196)
>
>
>
>
>
> XML File is
>
>
>
> <?xml version="1.0" ?> <Message id="1">
The error message means what it says :-). Since your file ends with
"</Message>", you need the <Message> element here, but XML syntax requires
that it be on a separate line in order to be recognized.
<application_name>Find Doc</application_name>
>
> <createDate>2006-04-10 14:25:26.062</createDate>
>
> <createdBy>1</createdBy>
>
> <id>0</id>
>
> <index_page>index.jsp</index_page>
>
> <message_text>Error on Index.jsp</message_text>
>
> <priority>5</priority>
>
> <signature>Revolution Team</signature>
>
> <user_id>1</user_id>
>
> </Message>
Craig