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
__
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
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