I have installed a new tomcat server (5.5) and I get this exception:
org.apache.jasper.JasperException: Unable to load tag handler class “org.apache.taglibs.standard.tag.rt.core.WhenTag” for tag “c:when”
I guess I am missing the JSTL but I can’t find how do add it to the tomcat server.
i found jstl-api-1.2.jar and jstl-impl-1.2.jar here
i have put them in the WEB-INF/lib
and now i get this exception
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 29 in the jsp file: /jsp/general/pos/DoMultiWordFrozen.jspf
Type mismatch: cannot convert from Boolean to boolean
the same code was working on my old (tomcat 5.5.12) server.
@yossi, yes you are missing JSTL taglib.
download JSTL 1.1/jstl.jar and standard.jar to
WEB-INF/libFolder.If you are using Maven in your project you can add below dependency to your pom.xml
You can find out more Maven releases here