JSTL and Tomcat 5.0 alpha

2002-12-30 Thread grenoml
I want to test out Tomcat 5.0 alpha (JSP 2.0) and would like to do so with JSTL. Where would I locate a version of JSTL that I can use with this Tomcat version? Would JSTL 1.0.2 have conflicts because of the two EL implementations? Regards, Gerry Reno __

JSTL: converting taglib and Java variables

2002-11-03 Thread grenoml
SCENARIO: I attempt to convert a Java variable to a taglib variable by doing this: CODE: <% String javavar = "somestring"; PrintWriter out = response.getWriter(); out.println("javavar="+javavar); %> RESULT: Page output is: javavar=somestring taglibvar=<%= javavar %> QUESTIONS: Why

JSTL 1.0.2 x:transform var/scope not working

2002-11-03 Thread grenoml
I thought that maybe there was a problem with JSTL 1.0.1 so I downloaded 1.0.2 and copied the jars to /WEB-INF/lib of my webapp but the same problem still occurs: SCENARIO: I am trying to use the tag to write the resulting transformed document to a session variable. So my tags look like this