I'm trying to get a simple <x:transform> to work after moving to a new version of Tomcat. The old version was 4.1.12 and the new one is 4.1.27.
The JSTL .jars are installed in my application's /WEB-INF/lib/ I've tried version 1.0.3 of the taglibs as well as older ones with the new tomcat.
Here's a code snippet:
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml" %> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<c:import url="test.xml" var="xmlfile" /> <c:import url="test.xsl" var="stylesheet" />
<x:transform xslt="${stylesheet}" xml="${xmlfile}" />
This works fine on my 4.1.12 on Solaris. However, 4.1.27 on Windows and Linux generates
org.apache.jasper.JasperException: The output format must have a '{http://xml.apache.org/xalan}content-handler' property!
Any clues?
/Petter Karlstrom
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
