XML: Tips and Tricks

  1. Transforming XML with XSLT at the Command Line with saxon-js and xslt3

    In this article, we’ll demonstrate how to transform XML documents using XSLT (Extensible Stylesheet Language Transformations) at the command line using node.js, saxon-js and xslt3.

  2. How to Try XMLSpy for Free

    Altova’s XMLSpy is an extremely powerful XML editor with excellent tools for creating XML Schemas, XSLTs, and basic XML documents, and the great news is that you can try it before buying it.

  3. How to Send and Receive XML Data to and from the Server

    In addition to the responseText property, XMLHttpRequest objects also have a responseXML property, which holds the data returned from the server as an XML document object (or null if the body content returned is not well-formed XML). Follow these eight steps to send XML data in an HTTP POST, receive an XML document from a server, and output the XML that was received.

  4. How to Dynamically Populate an HTML Table with XML Data

    Once you know how to retrieve XML data from a server, the next step is to learn how to display that data in the browser. One way to use XML data is to populate an HTML table with it. Follow these 12 steps to learn how it's done.

  5. How to Read XML Files with the Google Maps API

    If you have an XML document containing locations that you want to display on a map, you can load this XML file and display each location as a marker in Google Maps. Here's how.

  6. How to Create XML Serialization in .NET

    The steps below describe how to implement XML serialization in .NET.