XML – DOM

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

The Document Object Model (DOM) is the foundation of XML. XML documents have a hierarchy of informational units called nodes; DOM is a way of describing those nodes and the relationships between them.…

Continue ReadingXML – DOM

XML – Schemas

  • Post author:
  • Post category:XML
  • Post comments:1 Comment

XML Schema is commonly known as XML Schema Definition (XSD). It is used to describe and validate the structure and the content of XML data. XML schema defines the elements, attributes…

Continue ReadingXML – Schemas

XML – DTDs

  • Post author:
  • Post category:XML
  • Post comments:1 Comment

The XML Document Type Declaration, commonly known as DTD, is a way to describe XML language precisely. DTDs check vocabulary and validity of the structure of XML documents against grammatical…

Continue ReadingXML – DTDs

XML – Encoding

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

Encoding is the process of converting unicode characters into their equivalent binary representation. When the XML processor reads an XML document, it encodes the document depending on the type of encoding.…

Continue ReadingXML – Encoding

XML – Processing

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

This chapter describes the Processing Instructions (PIs). As defined by the XML 1.0 Recommendation, "Processing instructions (PIs) allow documents to contain instructions for applications. PIs are not part of the character…

Continue ReadingXML – Processing