Re: Help needed in XMl - Data

James Tauber (jtauber@jtauber.com)
Fri, 28 Aug 1998 20:50:45 +0800


An XML document has the form:

XML Declaration (optional)
Prolog (optional)
Document Element
Miscellaneous Comments and/or PIs (optional)

In your case, <s:schema>...</s:schema> is the Document Element. (There can
only be one).

So the only thing allowed after </s:schema> is a comment or PI, hence
mxsml's error.

Also, the XML Declaration should be <?xml version='1.0' ?> (ie lower case
xml)

James

--
James Tauber / jtauber@jtauber.com      http://www.jtauber.com/
Lecturer and Associate Researcher
Electronic Commerce Network             ( http://www.xmlinfo.com/
Curtin Business School                  ( http://www.xmlsoftware.com/
Perth, Western Australia                ( http://www.schema.net/

><?XML version='1.0' ?> ><s:schema> [...] ></s:schema> ><Book> > <author>Henry Ford</author> > <author>Samuel Crowther</author> > <title>My Life and<titlePart>Work</titlePart></title> ></Book>