Error including one xslt to another

74 views Asked by At

I have two xslt. one is included in other. but I am getting error in including the xslt.

Main.xslt

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999`enter code here`/XSL/Transform">

<xsl:include href="branch.xslt"/>

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>

Main.xslt and branch.xslt , both available in same location.

Error: I/O error reported by XML parser processing file:/D:/workspaces/proj/removals.xslt: D:\workspaces\proj\removals.xslt (The system cannot find the file specified)

Can anyone suggest/guide where I am missing, please?

0

There are 0 answers