|
|
YOUR FEEDBACK
SOA World Conference
Virtualization Conference $200 Savings Expire May 16, 2008... – Register Today! Did you read today's front page stories & breaking news?
SYS-CON.TV |
TODAY'S TOP SOA & WEBSERVICES LINKS XML Tips
DTD and XML Schema Structures
Conversion methods for J2EE and XML developers
By: Deepak Vohra; Ajay Vohra
Digg This!
This article compares Document Type Definition (DTD) and XML Schema elements. Java 2 Enterprise Edition (J2EE) developers use DTDs and schemas in J2EE/XML applications. When a DTD for an XML document is provided and validation with an XML Schema is required, the DTD-to-XML Schema conversion creates an XML Schema document corresponding to the DTD document. Overview In this tutorial the different DTD declarations and their equivalent declarations in an XML Schema, and the equivalent of the XML document DOCTYPE declaration, are discussed, including:
The DOCTYPE declaration in an XML document refers to a public URI and the system URI of an external DTD. If the XML document is validated, the document elements and attributes are validated with the element and attribute definitions specified in the DOCTYPE DTD. A DTD specified with a system and public identifiers is an external subset DTD. A DTD may also be specified as an internal subset. An internal subset DTD is specified in the DOCTYPE declaration, which may consist of a combination of internal and external DTDs. The DOCTYPE declaration in an XML document is specified with the <!DOCTYPE> declaration. <!DOCTYPE root_element ((SYSTEM "system_uri")|(PUBLIC "public_uri" The system URI of a schema document is specified in an XML document with the xsi:schemaLocation and xsi:noNamespaceSchemaLocation attributes in the root element. The xsi:schemaLocation is used to specify a namespace schema. The xsi:noNamespaceSchemaLocation is used to specify a schema without a namespace. <root_element xmlns:xsi=http://www.w3.org/2001/ Comment Declaration In a DTD comments are specified with a comment declaration. <!-- DTD Comment--> In a schema comments are declared in the <xs:documentation/> element. <xs:annotation> Processing Instructions Declaration <? PITarget Instruction?> The PITarget "xml" or "XML" may only be used in an XML declaration. In a schema the <xs:appInfo/> element specifies the instruction for an application. <xs:annotation> Element Declaration Elements in a DTD are represented with <!ELEMENT> declarations. <!ELEMENT A (B, C)> Element A has subelements B and C. Element declarations in an XML Schema are represented with the <xsd:element/>. <xsd:element name="element_name" An <xs:element/> declaration in a schema may be in a <xs:schema/>, <xs:sequence/>, <xs:choice/>, or a<xs:all/> element. The following sections discuss different types of element declarations. Text element <!ELEMENT A (#PCDATA)> In an XML Schema a text element is declared by specifying the type attribute of the element as xs:string. <xs:element name="A" type="xs:string"/> A PCDATA element may also be declared in a schema with a <xs:complexType/>. <xsd:element name="A"> Empty element An empty element does not consist of any subelements or text. An empty element is declared in a DTD by specifying the element as an EMPTY element. <!ELEMENT A EMPTY> In a schema an empty element is represented by setting attribute "mixed" of element <xs:complexType> to "false." <xsd:element name="A"> Any element <!ELEMENT A ANY> Element A may consist of variable text or subelements. The schema representation of a variable element is specified with the <xs:any/> element. <xs:element name="A"> Element sequence <!ELEMENT A(B, C, D)> Elements B, C, and D are a sequence of elements in Element A. In a schema a sequence of elements is specified with <xs:sequence/> . <xs:element name="A" > Element choice <!ELEMENT A (B|C|D)> Elements B, C, and D are a choice of elements in Element A. In a schema a choice of elements is specified with <xs:choice/>. <xs:element name="A" > Element with sequence and choice An element sequence and choice is specified in a DTD with a combination of a list and choice (|) declarations. <!ELEMENT A ((B,C)|D> In a schema an element consisting of a sequence and a choice is declared with a combination of <xs:sequence/> and <xs:choice/> elements. <xs:element name="A" > Element with cardinality <!ELEMENT A (B?, (C*, D+)*)> In a schema, cardinality is represented with the minOccurs and maxOccurs attributes (see Listing 1). The minOccurs and maxOccurs attributes may be declared in the <xs:element/>, <xs:all/>, <xs:choice/>, <xs:sequence/>, and <xs:any/> elements. Element with PCDATA and subelements <!ELEMENT A(#PCDATA, B, C)> An element with text and subelements in a schema is specified with the <xs:complexType/> attribute "mixed" set to "true". <xs:element name="A" > Attribute Declaration <!ATTLIST Element_Name (Attribute_ An ATTLIST may define multiple attributes. The attribute_type may be "CDATA" enumerations of values "NOTATION", "ID", "IDREF", "IDREFS", "ENTITY", "ENTITIES", "NMTOKEN", or "NMTOKENS". The default_type may be "#REQUIRED", "#IMPLIED", or "#FIXED AttValue". In a schema an attribute is declared with the <xs:attribute/> element. <xs:attribute default ="default_ The <xs:attribute/> declaration may be in an <xs:schema/>, <xs:complexType/>, <xs:restriction/>, <xs:extension/>, or <xs:attributeGroup/> element. CDATA attributes <!ATTLIST A Element A has attributes a, b, and c. In a schema a CDATA attribute is specified with the attribute type xs:string. <xs:element name="A" > The attributes may be included in an element as a <xs:attributeGroup/>. The <xs:attributeGroup/> element declares a group of attributes (see Listing 2). Enumerated Attributes <!ATTLIST A a(x|y|z)> In a schema an enumerated attribute is declared with the <xs:enumeration/> element (see Listing 3). Data types attributes <!ATTLIST A In a schema an element with "NOTATION", "ID", "IDREF", "IDREFS", "ENTITY", "ENTITIES", "NMTOKEN", or "NMTOKENS" data type attributes is specified by setting the "type" attribute of the <xs:attribute/> element (see Listing 4). Entity Declaration <!ENTITY Entity_name Entity_value|((SYSTEM System_uri | PUBLIC Public_uri A parameter entity is represented with a <!ENTITY> declaration. <!ENTITY Entity_name Entity_value|(SYSTEM System_uri | PUBLIC Public_uri System_uri is entity's system identifier and Public_uri is entity's public identifier. XML Schema does not have an equivalent of an ENTITY declaration. In a schema an entity is specified with the <xs:simpleType/> element. An entity is represented in a DTD by the following ENTITY declaration: <!ENTITY % complexDerivationSet "CDATA"> which is represented in a schema with the following <xs;simpleType/> declaration: <xs:simpleType name="complexDerivationSet"> Notation Declaration <!NOTATION notation_name (ExternalID | PublicID)> In a schema a notation is specified with the <xs:notation/> element. <xs:notation name ="notation_name" public ="PublicID" system ="ExternalID"/> A notation is declared in a DTD with the following declaration: <!NOTATION gif PUBLIC "image/gif"> and represented in a schema with the following declaration: <xs:notation name="gif" public="image/gif"> Conclusion XML JOURNAL LATEST STORIES . . .
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK BREAKING XML NEWS
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||