April 29, 2009
A style sheet is a document that contains formatting rules for one or more XML documents. Cascading style sheet: This style sheet provides a simple mechanism for formatting an XML document. A CSS is a text file containing one or more rules or definitions for the style characteristics of a particular element. It controls how [...]
Filed under:
XML by admin
April 23, 2009
An XML schema enables you to combine related elements and attributes into groups. This feature of creating grouped elements and attributes enables you to perform the certain task. • Create a reusable group of elements and attributes: A reusable group can be used to specify the content model for a complex type of element or [...]
Filed under:
XML by admin
April 18, 2009
One of the key features of schemas is their ability to support a high degree of reusability among other schemas. This can be done by using this include or import elements. This include elements is used to include or refer to an external schema that is located at a definite address. The syntax for using [...]
Filed under:
XML by admin
April 12, 2009
A namespace is a method of preventing conflicts between elements with the same name. In xml, a namespace is a virtual space that is assigned or recognized by a Uniform Resource Identifier. This is a string that uniquely identifies the elements and attributes from different schemas. This namespace URI is not the same as a [...]
Filed under:
XML by admin
April 7, 2009
An attributes can be defined as simple type definitions and global attributes declarations. Simple type definitions facilitate local validation of the attribute information. Global attribute declarations enable reuse of attributes. In an XSD, an attributes for a user-defined element is declared using the attribute element. The syntax for xsd attributes: These attribute element contains consists [...]
Filed under:
XML by admin
April 2, 2009
There are two types of elements in xml schema: 1, simple 2, complex Simple element: It contains only values, such as numbers, strings, and dates. Any child element or attributes are not present in the simple element. The syntax for declaring elements with a simple data type is The Name specified the name of the [...]
Filed under:
XML by admin