Hello Experts,
I need to import an external stylesheet (on the web) into my xml file.
I wrote the below xslt code. Although it executes successfully, i do not see the external stylesheet being added to the XML.
<?xml version="1.0" encoding="utf-8"?>
http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
http://www.moda-ml.net/moda-ml/repository/xsl/v2004-1/en/TEXDesAdviseEN.xsl" />
<xsl:apply-imports />
<xsl:copy-of select="/" />
</xsl:template>
</xsl:stylesheet>
Do let me know whether there is any error in the code or whether I need to follow some additional steps/processes.
Thanks in advance.