XSD Tutorials - Herong's Tutorial Examples - Version 5.10, by Dr. Herong Yang

Xerces2 Sample Program List

This section provides a list of sample programs provided in Xerces2 Java 2.11.0 XML Schema 1.1 Beta version that you can use to parse and validate XML documents.

If you read through the documentation provided in the Xerces2 Java 2.11.0 XML Schema 1.1 Beta version, you will see a number of very nice sample programs that you can use to parse and validate XML documents:

  • dom.Counter - Counting total number of elements, attributes, etc. using DOM technology.
  • dom.GetElementsByTagName - Listing elements with their names and attributes using DOM technology.
  • dom.Writer - Writing back elements, attributes, and contents using DOM technology.
  • dom.ElementPrinter - Printing back elements in tree format uding DOM technology.
  • sax.Counter - Counting total number of elements, attributes, etc. using SAX technology.
  • sax.DocumentTracer - Printing out parsing events in tree format using SAX technology.
  • sax.Writer - Writing back elements, attributes, and contents using SAX technology.
  • jaxp.SourceValidator - Validating an XML document against an XSD schema using JAXP technology.
  • jaxp.TypeInfoWriter - Writing back elements and attributes with type informaiton using JAXP technology.
  • socket.DelayedInput - Reading an XML document from a file as if from a slow socket.
  • xni.Counter - Counting total number of elements, attributes, etc. using XNI (Xerces Native Interface) technology.
  • xni.DocumentTracer - Printing out parsing events in tree format using XNI technology.
  • xni.Writer - Writing back elements, attributes, and contents using XNI technology.

Last update: 2014.

Table of Contents

 About This Book

 Introduction to XML Schema

 XML Editor and Schema Processor - XMLPad

 Java API for XML Processing - JAXP

 JAXP - XML Schema (XSD) Validation

Xerces2 Java Parser - Java API of XML Parsers

 Installing Xerces2 Java Parser for XSD 1.1

 Verifying Installation of Xerces2

Xerces2 Sample Program List

 Xerces2 Sample Program dom.Counter

 dom.Counter Validating XML with Associated XSD

 dom.GetElementsByTagName and dom.Writer

 sax.DocumentTracer and sax.Writer

 Examples of XSD and XML Files with Errors

 sax.Writer Reporting Errors Embedded in XML Structure

 XSD 1.1 not Supported by sax.Writer

 XSD 1.1 Supported by jaxp.SourceValidator

 Examples of XSD 1.1 and XML Files with Errors

 jaxp.TypeInfoWriter as an XSD 1.1 Validation Tool

 Using Xerces2 Java API

 XML Schema Language - Basics

 Introduction of XSD Built-in Datatypes

 "string" and Its Derived Datatypes

 "decimal" and Its Derived Datatypes

 "dateTime" and Its Related Datatypes

 Miscellaneous Built-in Datatypes

 Facets, Constraining Facets and Restriction Datatypes

 "simpleType" - Defining Your Own Simple Datatypes

 Complex Element Declaration

 Identity-Constraints: unique, key and keyref

 Assertion as Custom Validation Rules

 XML Schema Location and Namespace in XML Documents

 Overriding Element Types in XML Documents

 Linking Multiple Schema Documents Together

 Glossary

 References

 PDF Printing Version

Xerces2 Sample Program List - Updated in 2014, by Dr. Herong Yang