Hi,
im trying to setup an xsl stylesheet that is including another xsl and getting the following error:
Message: Public ID System ID An exception occurred! Type:NetAccessorException, Message:The host/address 'dontwannasteponyourfeet.com' could not be resolved ( Line 0 Column 0 )
If i am commenting out the inclution as follows the stylesheet works as expected:
<xsl:stylesheet version="2.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform" xmlns:date=" http://exslt.org/dates-and-times " extension-element-prefixes="date">
<!--
<xsl:include href="include.xsl"/>
-->
The included xsl "include.xsl" looks like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform ">
<!-- variables -->
<xsl:variable name="TestVar">MYVAL</xsl:variable>
</xsl:stylesheet>
Kind regards,
Günter