XML Format

Mulesoft

XML Format

The Extensible Markup Language (XML) is a simple text-based format for representing structured information: documents, data, configuration, books, transactions, invoices, and much more. It was derived from an older standard format called SGML (ISO 8879), in order to be more suitable for Web use.

XML File Format

The XML file format is based on the XML Document Object Model (DOM) that is a programming API for HTML and XML documents. The XML DOM defines a standard method to access and manipulate the XML document elements. It makes a tree-structure view of an XML document that can be used to access all elements through the DOM tree. Existing elements can be modified/deleted as well as new elements can be created in the XML tree. Each element of an XML document is called a node. The XML DOM is as shown in the following image.

XML DOM

XML Example

The following is a simplified example of a CD catalog where each record contains information about CDs such as artist, country, company, price and year of production.

<CATALOG>

  <CD>

    <TITLE>Empire Burlesque</TITLE>

    <ARTIST>Bob Dylan</ARTIST>

    <COUNTRY>USA</COUNTRY>

    <COMPANY>Columbia</COMPANY>

    <PRICE>10.90</PRICE>

    <YEAR>1985</YEAR>

  </CD>

  <CD>

    <TITLE>Hide your heart</TITLE>

    <ARTIST>Bonnie Tyler</ARTIST>

    <COUNTRY>UK</COUNTRY>

    <COMPANY>CBS Records</COMPANY>

    <PRICE>9.90</PRICE>

    <YEAR>1988</YEAR>

  </CD>

  <CD>

    <TITLE>Greatest Hits</TITLE>

    <ARTIST>Dolly Parton</ARTIST>

    <COUNTRY>USA</COUNTRY>

    <COMPANY>RCA</COMPANY>

    <PRICE>9.90</PRICE>

    <YEAR>1982</YEAR>

  </CD>

  <CD>

    <TITLE>Still got the blues</TITLE>

    <ARTIST>Gary Moore</ARTIST>

    <COUNTRY>UK</COUNTRY>

    <COMPANY>Virgin records</COMPANY>

    <PRICE>10.20</PRICE>

    <YEAR>1990</YEAR>

  </CD>

  <CD>

    <TITLE>Eros</TITLE>

    <ARTIST>Eros Ramazzotti</ARTIST>

    <COUNTRY>EU</COUNTRY>

    <COMPANY>BMG</COMPANY>

    <PRICE>9.90</PRICE>

    <YEAR>1997</YEAR>

  </CD>

  <CD>

</CATALOG>

Follow Me

If you like my post please follow me to read my latest post on programming and technology.

Instagram

Facebook

Leave a Reply

Your email address will not be published. Required fields are marked *