HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Register your product to gain access to bonus material or receive a coupon.
World-renowned author Elliotte Rusty Harold teaches programmers how to use XML effectively and produce code that's just plain better.
° Critical rules of thumb employed by the experts--the things they almost always do or almost always avoid doing--to get the most out of XML.
° Drawing on years of experience, Harold explains 50 ways to use XML to produce code that is extensible, legible, and maintainable.
° The latest addition to Scott Meyers' Effective Software Development Series.
Learning the fundamentals of XML might take a programmer a week. Learning how to use XML effectively might take a lifetime. While many books have been written that teach developers how to use the basic syntax of XML, this is the first one that really focuses on how to use XML well. This book is not a tutorial. It is not going to teach you what a tag is or how to write a DTD (Document Type Definition). Instead it's going to tell you when, why, where, and how to use such tools effectively (and equally important when not to use them).Since XML has become a fundamental underpinning of new software systems, it becomes important to ask new questions, not just what XML is, but how does one use it effectively? Which techniques work and which don't? Perhaps most importantly, which techniques appear to work at first but fail to scale as systems are further developed? This book answers these questions. It is not enough to write programs that compile and produce the expected results. It is important to write code that is extensible, legible, and maintainable. XML can be used to produce robust, extensible, maintainable systems.
Item 37: Validate
Inside Your Program with Schemas
Item 37: Validate Inside Your Program with Schemas
Preface.
Acknowledgments.
Introduction.
Element versus Tag.
Attribute versus Attribute Value.
Entity versus Entity Reference.
Entity Reference versus Character Reference.
Children versus Child Elements versus Content.
Text versus Character Data versus Markup.
Namespace versus Namespace Name versus Namespace URI.
XML Document versus XML File.
XML Application versus XML Software.
Well-Formed versus Valid.
DTD versus DOCTYPE.
XML Declaration versus Processing Instruction.
Character Set versus Character Encoding.
URI versus URI Reference versus IRI.
Schemas versus the W3C XML Schema Language.
I. SYNTAX.
Item 1. Include an XML Declaration.The version Info.
The encoding Declaration.
The standalone Declaration.
Item 2. Mark Up with ASCII if Possible.New Characters in XML Names.
C0 Control Characters.
C1 Control Characters.
NEL Used as a Line Break.
Unicode Normalization.
Undeclaring Namespace Prefixes.
Item 4. Use Standard Entity References.The Header Comment.
Declarations.
Item 6. Name Elements with Camel Case.Parameterizing Attributes.
Parameterizing Namespaces.
Full Parameterization.
Conditional Sections.
Item 8. Modularize DTDs.The xml:space Attribute.
Ignorable White Space.
Tags and White Space.
White Space in Attributes.
Schemas.
II. STRUCTURE.
Item 11. Make Structure Explicit through Markup.Tag Each Unit of Information.
Avoid Implicit Structure.
Where to Stop?
Item 12. Store Metadata in Attributes.Empty-Element Tags.
CDATA Sections.
Character and Entity References.
Item 16. Prefer URLs to Unparsed Entities and Notations.Style Location.
Overlapping Markup.
Page Formatting.
Out-of-Line Markup.
Misuse of Processing Instructions.
Item 18. Include All Information in the Instance Document.Quoted Printable.
Base64.
Item 20. Use Namespaces for Modularity and Extensibility.Choosing a Namespace URI.
Validation and Namespaces.
Item 21. Rely on Namespace URIs, Not Prefixes.The W3C XML Schema Language.
Document Type Definitions.
RELAX NG.
Schematron.
Java, C#, Python, and Perl.
Layering Schemas.
Item 25. Pretend There's No Such Thing as the PSVI.III. SEMANTICS.
Item 28. Use Only What You Need.SAX.
DOM.
JDOM.
Item 32. Choose SAX for Computer Efficiency.Xerces-J.
DOM Level 3 Validation.
IV. IMPLEMENTATION.
Item 38. Write in Unicode.Choosing an Encoding.
A char Is Not a Character.
Normalization Forms.
Sorting.
Item 39. Parameterize XSLT Stylesheets.Natures.
Purposes.
Item 43. Preprocess XSLT on the Server Side.Servlet-Based Solutions.
Apache.
IIS.
Item 44. Serve XML+CSS to the Client.MIME Type.
HTML Tidy.
Older Browsers.
Item 47. Catalog Common Resources.Catalog Syntax.
Using Catalog Files.
Item 48. Verify Documents with XML Digital Signatures.Digital Signature Syntax.
Digital Signature Tools.
Item 49. Hide Confidential Data with XML Encryption.Encryption Syntax.
Encryption Tools.
Item 50. Compress if Space Is a Problem.Learning the fundamentals of XML might take a programmer a week. Learning how to use XML effectively might take a lifetime. While many books have been written that teach developers how to use the basic syntax of XML, this is the first one that really focuses on how to use XML well. This book is not a tutorial. It is not going to teach you what a tag is or how to write a DTD. I assume you know these things. Instead it's going to tell you when, why, where, and how to use such tools effectively (and perhaps equally importantly when not to use them). This book derives directly from my own experiences teaching and writing about XML. Over the last five years. I've written several books and taught numerous introductory courses about XML syntax, APIs, and tools. Increasingly I'm finding that audiences are already familiar with the basics of XML. They know what a tag is, how to validate a document against a DTD, and how to transform a document with an XSLT style sheet. The question of what XML is and why to use it has been sufficiently well evangelized. The essential syntax and rules are reasonably well understood. However, although most developers know what a CDATA section is, they are not sure what to use one for. Although programmers know how to add attribute and child nodes to elements, they are not certain which one to use when.
Since XML has become a fundamental underpinning of new software systems, it becomes important to begin asking new questions, not just what XML is, but how does one use it effectively? Which techniques work and which don't? Perhaps most importantly, which techniques appear to work at first but fail to scale as systems are further developed? When I teach programming at my university, one of the first things I tell my students is that it is not enough to write programs that compile and produce the expected results. It is as important (perhaps more important) to write code that is extensible, legible, and maintainable. XML can be used to produce robust, extensible, maintainable, comprehensible systems or it can be used to create masses of unmaintainable, illegible, fragile, closed code. In the immortal words of Eric Clapton, "It's in the way that you use it." XML is not a programming language. It is a markup language; but it is being successfully used by many programmers. There have been markup languages before, but in the developer community XML is far and away the most successful. However, the newness and unfamiliarity of markup languages have meant that many developers are using it less effectively than they could. Many programmers are hacking together systems that work, but are not as robust, extensible, or portable as XML promises. This is to be expected. Programmers working with XML are pioneers exploring new territory, opening up new vistas in software, and accomplishing things that could not easily be accomplished just a few years ago. However one definition of a pioneer is someone with an arrow in their back, and more than a few XML pioneers have returned from the frontier with arrows in their backs.
Five years after the initial release of XML into the world, certain patterns and antipatterns for the proper design of XML applications are becoming apparent. All of us in the XML community have made mistakes while exploring this new territory, the author of this book prominently among them. However, we've learned from those mistakes, and we're beginning to develop some principles that may help those who follow in our footsteps to avoid making the same mistakes we did. It is time to put up some caution signs in the road. We may not exactly say "Here there be dragons", but we can at least say, "That road is a lot rockier than it looks at first glance, and you might really want to take this slightly less obvious but much smoother path off to the left."
This book is divided into four parts beginning with the lowest layer of XML and gradually working up to the highest:
Although, this is how I've organized the book, you should be able to begin reading at essentially any chapter. This book makes an excellent bathroom reader. :-) You may wish to read the introduction first, which defines a number of key terms that are used throughout the book, and which are frequently misused or confused. However, after that feel free to pick and choose from the topics as your interest and needs dictate. I've made liberal use of cross-references to throughout to direct you along other paths through the book that may be of interest.
I hope that this book is a beginning, not an end. It's still early in the life of XML, and much remains to be discovered and invented. You may well develop best practices of your own that are not mentioned here. If you do I'd love to hear about them. You may also take issue with some of the principles stated here. I'd like to hear about that too. Discussion of many of the guidelines identified here has taken place on the xml-dev mailing list, and seems likely to continue in the future. If you're interested in further discussion of the issues raised in this book, I recommend you subscribe and participate there. Complete details can be found at http://lists.xml.org/. On the other hand, if you find out and out mistakes in this book (The ID attribute value on p. 87 is missing a closing quote. The word "Cat" is misspelled on p. 46.) you can write me directly at elharo@metalab.unc.edu. I maintain a web page listing known errata for this book, as well as any updates at http://www.cafeconleche.org/books/effectivexml/. I hope this book makes your use of XML both more effective and more enjoyable.
—Elliotte Rusty Harold
elharo@metalab.unc.edu
Brooklyn NY
April 22, 2003
Download the Index
file related to this title.