I would like to convert xml attributes of input xml to elements of output xml. Example
Try it this way:
<xsl:template match="Price"> <xsl:copy> <xsl:for-each select="@*"> <xsl:element name="{name()}"> <xsl:value-of select="."/> </xsl:element> </xsl:for-each> </xsl:copy> </xsl:template>