convert XML via XSLT

I have an XMLEDITED:\[code\]<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://stackoverflow.com/questions/11164918/xsl.xslt"?> <CATALOG><CD> </CD> </CATALOG>\[/code\]I have XSLT: \[code\]<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" ><xsl:output exclude-result-prefixes="xsl xs" indent="yes"/> <xsl:template match="*"> <xsl:element name="{lower-case(local-name())}"> <xsl:apply-templates/></xsl:element></xsl:template> </xsl:stylesheet>\[/code\]I want to check the output I Think it should be\[code\]<?xml version="1.0" encoding="ISO-8859-1"?><!-- Edited by XMLSpy? --><catalog><cd> </cd> </catalog>\[/code\]Where I can check or verify that output is correct or not. Do I need to use any tool for this?
 
Back
Top