On Mon, Apr 10, 2006 at 12:46:25PM -0700, Mark A Fortner wrote: > That's odd. The elements should form a well-formed > document -- the position of the root element on a new > line shouldn't make any difference.
The first line - the <?xml...> declaration needs to be on its own line. It is not itself xml (notice any closing tag for it?) and, I believe, requires a newline to separate it from the document proper. Nathan > One could have a > document generated by a Windows box, read by a Linux > box and the returns would be messed up. Are you saying > that you would expect such an eventuality to cause a > document to fail to be parsed? > > --- Craig McClanahan <[EMAIL PROTECTED]> wrote: > > > 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 > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
