Advertise Here
Need an introduction to XML? Learn what XML is all about and discover how XML differs from HTML. Explore XML syntax rules, learn how to write well-formed XML documents, adjust XML attributes, validate XML documents, and more. - Web04
Extensible Markup Language

Search XML Files

XML Files RSS Feed XML Files Updates

 


XML Validation

by Jan Egil Refsnes

back next

"Well Formed" XML documents

A "Well Formed" XML document is a document that conforms to the XML syntax rules that we described in the previous chapter.

The following is a "Well Formed" XML document:

<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note> 


"Valid" XML documents

A "Valid" XML document is a "Well Formed" XML document which conforms to the rules of a Document Type Definition (DTD).

The following is the same document as above but with an added reference to a DTD:

<?xml version="1.0"?>
<!DOCTYPE note SYSTEM "InternalNote.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note> 


More about XML DTD

You can read more about DTD in the chapter XML DTD.


back next
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 DevX XML Content 
- Lessons from Cloud Adopters: Cloud-to-Cloud Integration Is a Challenge
- Can Nascent iPaaS Solve Cloud and SaaS Integration Problems?
- Merge XML files into a PDF Document in .NET
- W3C Announces a New XML Standard
- W3C Has a New XML Standard: XProc

Jump to : Top Of Page or HOME