Introduction to XML Schemas
This article explains what an XML Schema is and the many usefull purposes thay provide for with code examples. More ...
Create a Database Using Only Notepad
You can create your own database using only Windows Motepad, or any ASCII text editor, and use the database with Internet Explorer. Your database can be used as an address book, recipe file, collection catalog, or any of a thousand uses. More ...
Where to Run XSLT Files
Unfortunately, unlike html and JavaScript, most browsers do not have a built-in XSLT processor, so you won't be able to test XSLT on your desktop. An alternative is to use one of the free online XSLT processors. 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 ...
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 ...
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 ...
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 ...
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 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 ...