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 ...
XML Namespaces Made Simple
If you're going to use XML for more than just your own local purposes, you need a way to validate it. Today, this is done using a schema. But don't attempt to use a schema without an understanding of namespaces. 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 ...
Introduction to XML Schemas
This article explains what an XML Schema is and the many usefull purposes thay provide for with code examples. More ...
Using and Creating RSS News Feeds
RSS is a simple XML file that a publisher places on their website. The data contained in the file is a list of new articles on the website. Being in a standard XML format makes the RSS file available for anyone to access and use. 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 ...
Using Java Script to Display XML Data
In this article, you learn how to use Java Script to display an XML document's data as an html page. You create a script that you can use to traverse any XML document to display information about its elements. And you create a script that you can use to check any XML document for errors. More ...
Roll Your Own Java XML Database
In this article I show you how to write a simple Java program to access an XML document that allows you to save your updates. The database for this example is an XML document containing all the different modes which can be set for a computers display. More ...
XML 101
What is XML? Why is it creating such a deluge of interest? What should you know about XML, and perhaps more importantly, why should you even care about it? In this article, I will provide a high-level description of what XML is, and what it's not. More ...