{
// Create an instance of this class to work with.
CatalogXsdConfig catxsdconfig = new CatalogXsdConfig();
// Create an instance of a type based on the received XML's schema
XmlCatalogDocumentBean catdoc = catxsdconfig.parseXml(args[0]);
//Prints the element values from the XML.
catxsdconfig.printElements(catdoc);
}