In the Data integration module I'm creating an XSLT that transforms an XML into a new XML. This is my XSLT - just to see what is outputtet:
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"> <xsl:output method="xml" indent="yes"/> <xsl:template match="/"> <xsl:copy-of select="." /> </xsl:template> </xsl:stylesheet>
But when this is executed it tells me: "Error occured: Root element is missing."
Would appreciate if some one would show me a small working XSLT just to get me started.