Introducing cascading style sheet

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 [...]

0

Creating Grouped Elements and Attributes

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 [...]

0

Reusing components of a schema

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 [...]

2

Introducing XML Namespaces

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 [...]

0

Declaring attributes in a schema

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 [...]

0

Elements in XML Schema

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 [...]

0