Hi, i'm a bit new to all this!!
I have an xml export from MS access however it is written with a microsoft root node - how can i replace this with one that matches the schema?
At the moment i've got:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl=" <xsl:template match="/">
<NEWROOTNODE>
<xsl:copy-of select="child::node()" />
</NEWROOTNODE>
</xsl:template>
</xsl:stylesheet>
However this copys all the data including the old root node.
I have an xml export from MS access however it is written with a microsoft root node - how can i replace this with one that matches the schema?
At the moment i've got:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl=" <xsl:template match="/">
<NEWROOTNODE>
<xsl:copy-of select="child::node()" />
</NEWROOTNODE>
</xsl:template>
</xsl:stylesheet>
However this copys all the data including the old root node.