Hi Aaron,

I had exactly the same problem you had, and the solution I found was to use a 
full URI for the xsl (i.e, with the http:// poiting to your web server). In 
my case, I used the following jsp code:

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml"; %>

<c:set var="xslURI" 
value="http://localhost:8080/jm9-jstl/xsl/output/br-html.xsl"/>
<c:set var="xmlURI" value="http://localhost:8080/jm9-jstl/xml/resume.xml"/>
<c:import url="${xmlURI}" var="xml"/>
<c:import url="${xslURI}" var="xslt"/>

<x:transform xml="${xml}" xmlSystemId="${xmlURI}" xsltSystemId="${xslURI}" 
xslt="${xslt}"/>

Try to adapt that code to your page (just changing the values of xslURI and 
xmlURI).

Felipe



On Wednesday 09 July 2003 11:31 am, Aaron Jackson jacksonakj-at-hotmail.com 
|jakarta| wrote:
> I have the following JSP that is using <x:transform>  to do a
> transformation.  The xsl that I am using has "<xsl:import>" tags that are

> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core";; %>
> <%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml";; %>
>
> <c:import url="/xml/aaronjackson.xml" var="xml"/>
> <c:import url="/xsl/output/us-html.xsl" var="xslt"/>
> <x:transform xml="${xml}" xslt="${xslt}"
> xsltSystemId="/xsl/output/params.xsl"/>



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

Reply via email to