xsl:include and WAR Files
We are trying to deploy our application using WAR file approach. All our JSP and servlets are working fine.
We have our reports generated based on XSL files. XSl files are put into the war file.
In my transformation servlet, I am loading the original xsl file by calling getResourceAsStream(xslFileName);
During the xsl transformation if we have any includes for another xsl file, I am getting an exception
java.net.MalformedURLException: no protocol: myIncluded.xsl
Basically in my original XSL file I have the following line
<xsl:include href="myIncluded.xsl" />
Could somebody tell me what I should doing to get rid off this exception.
Thanks in advance
SK

