[
Lists Home |
Date Index |
Thread Index
]
- From: Sean Mc grath <digitome@iol.ie>
- To: xml-dev@ic.ac.uk
- Date: Mon, 07 Sep 1998 18:53:56 +0100
[Nigel Byrnes]
>C:\msxml>jview msxml -d1 me\simple.xml
>Root element name must match the DOCTYPE name
A validating XML parser enforces the constraint that the root
element of the document matches the element type name specified
in the doctype. So this snippet is ok:
<!DOCTYPE foo "bar.dtd">
<foo>
(foo matches foo)
but this is not:
<!DOCTYPE foo "bar.dtd">
<baz>
(foo does not match baz)
Non-validating parsers, on the other hand, don't care.
Sean Mc Grath
http://www.digitome.com/sean.htm
+353 96 47391
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|