SOAP Explained
Client applications and Web services communicate using messages in a format called Simple Object Access Protocol (SOAP). SOAP messages are simply XML documents constructed to SOAP specifications. These messages are communicated using standard Internet protocols, like http, smtp, and ftp. 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 ...
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 ...
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 ...
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 ...
Easy XML to Connect Content to Web Page
This is an example that lets you store your websites content in text files separate from your web pages. The web pages and the content are combined using XML. You will learn some basic XML. 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 ...
Extensible Stylesheet Language (XSL) Basics
Although XML and XSL are very complex technologies, with the simple examples in this article you learn that you don't need extensive knowledge to do some powerful things. You can store your data in an XML document and use a basic XSL style sheet to select, filter, and sort the elements of an XML document for display as HTML in a Web browser. More ...
