On Fri, 12 Jul 2002 [EMAIL PROTECTED] wrote:

> <c:set var="xsl"><c:import
> url="style/default/chapter_content.xsl"/></c:set>
> <c:set var="xml"><c:import url="source/${param.id}/index.xml"/></c:set>
> 
> <x:transform xml="${xml}" xslt="${xsl}"
> xsltSystemId="style/default/chapter_content.xsl"/>

The problem is just that these variables don't match.  <c:set> exposes a
variable called 'xsl', but you're using ${xslt} in <x:transform>.  Use
${xsl} instead and you should be fine.

-- 
Shawn Bayern
"JSTL in Action"   http://www.jstlbook.com
(coming in July 2002 from Manning Publications)


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to