Introduction to XML Schemas
This article explains what an XML Schema is and the many usefull purposes thay provide for with code examples. More ...
Writing XML
In order to understand XML, you must be able to write XML, and few other sources explain how to write XML in simple terms and without all the complicated overhead like this source does. More ...
Program a Visual Basic XML Database
In this article I show you how to program an XML database with Visual Basic. This example consists of two parts, an XML document and a Visual Basic program that is used to browse, search, and edit the XML document. More ...
Rules For a Well-formed XML Document
An error in an XML document will bring your application to a halt. If you follow these rule for creating well-formed XML code, there is much less chance of creating an error, and any error will be easier to locate. More ...
XML Parsers
Before any work can be done with an XML document it needs to be broken down into its constituent parts with some sort of internal model built up, that job is done by a piece of software called a parser. More ...
XML Namespaces Explained
XML namespaces are simple in concept but difficult to explain because they can be declared and used in many different ways. In this article, I explain XML namespaces in their most basic form. Let's start with a basic XML document used to store air travel reservations. More ...
Nesting XML Elements
Nesting XML elements allows you to create a hierarchical structure of your data. However, you must not write the closing tag for the outer element until the inner elements are closed. More ...
Embed XML Data in Web Page and Access it Using JavaScript
HTML5 has a feature called a data block which allows you to embed XML data in a script block in your web page document and access it using JavaScript. More ...
CSV vs XML vs JSON - Which is the Best Response Data Format?
There are three major data formats being used to transmit data from a web server to a client: CSV, XML, and JSON. In order to develop an application with a solid architecture, it's a good idea to understand the differences between each format. More ...
