The sample file written in XML is given below. Please cut/paste and modify it for your own use. Here's an introduction to XML if you need it.
Note that special characters that have meaning in XML cannot be included directly in the data, and need to be encoded. See How To Locate and Replace Special Characters in an XML Document with Visual Basic for help with that problem.
<?xml version="1.0" encoding="utf-8"?> <catalog> <cd> <genre>Blues</genre> <artist>Duke Robillard</artist> <title>Dukes Blue</title> </cd> <cd> <genre>Alternative</genre> <artist>Ryan Gosling</artist> <title>Dead Man's Bones</title> </cd> <cd> <genre>Jazz</genre> <artist>Jamie Cullum</artist> <title>The Pursuit</title> </cd> </catalog>
dcb at cs wpi edu / Tue Oct 29 18:59:25 EDT 2013