xsl-list
[Top] [All Lists]

Xsl:import and param

2003-10-01 02:11:10
Hi, 

i would like to import an xsl file according to the value of a param :

<xsl:stylesheet
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
 
        <xsl:param name="xsl_criteria"/>
        <xsl:import>
          <xsl:attribute name="href">
            <xsl:text>file:</xsl:text><xsl:value-of
select="$xsl_criteria"/>
          </xsl:attribute>
        </xsl:import>

...

But it seems to be impossible : i've got an error : 
javax.xml.transform.TransformerException: xsl:import is not allowed in
this position in the stylesheet

(I set the param with a transformer.setParameter("xsl_criteria",
"path_to_my_xsl_file"))

Is there a solution for my problem ?

Thanks,

Julien

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>