XML: Advantages and Disadvantages
Advertisement
This page covers the advantages and disadvantages of XML (eXtensible Markup Language). It outlines the benefits and drawbacks of using XML in various applications.
What is XML? Introduction
- It stands for eXtensible Markup Language.
- It has been designed to transport and store data with emphasis on “what data is.” XML is all about carrying information.
- XML provides a framework to define markup languages.
- XML is neither a programming language nor a presentation language.
- XML is case-sensitive. Hence, utmost care is needed when writing XML scripts.
- It helps in transporting data between applications and databases.
- XML allows custom tag creation and use as desired, and hence it is more flexible.
- XML preserves whitespace.
- XML is dynamic in nature as it carries information.
- XML is recommended by the WWW consortium. It is a fee-free, open standard.
- Figure-1 depicts an XML script example.
- XML defines a set of rules or syntax that can encode documents in such a way that they can be readable by machines.
- XML helps in opening documents in a browser.
Benefits or Advantages of XML
The following are the benefits or advantages of XML:
- It is text-based and hence human-readable.
- It supports the Unicode standard, and hence text from any character set can be used.
- XML can store binary information. The binary data must be converted to text with the help of “Base64”.
- XML will store any document or data that can be represented as a “tree structure”.
- It allows business documents to be viewed in a browser.
- XML is platform-independent.
- XBRL (version of XML) is recommended by the United States SEC for reporting financial earnings to the US federal government.
- It can be used by small EDI users who do not have the resources to implement a full-blown EDI installation.
Drawbacks or Disadvantages of XML
The following are the drawbacks or disadvantages of XML:
- XML is relatively inefficient compared to other storage algorithms. This is due to the use of XML tags, which require extra storage or bandwidth.
- Storage of binary data such as image data is also inefficient. Storage is done using Base64 encoding, which takes 4 bytes to store 3 bytes of binary data. Hence, it consumes more storage/bandwidth.
- An additional program is needed to display encoded image data written in XML.
- There are three methods to parse XML files. Most programmers are not aware of these methods.
- XML requires a separate XML stylesheet to use it for more than basic display of data.
- XML is a backend technology for data storage and transmission. It lacks rendering instructions.
- Not all files are well-represented with tree structures. Examples include DB2/400 tables, flat files, undefined fixed record length files, stream files, etc.
- File sizes are very large.
- Application bridges, i.e., APIs, must be rewritten.