I put all the jars in the standard 1.0 package in \WEB-INF\lib. That didn't work. So I put all the tlds in \WEB-INF. That didn't work either.
My error is this: org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jsp/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application And my jsp is this: <[EMAIL PROTECTED] prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!doctype html public "-//W3C//DTD HTML 4.0 Final//EN"> <html> <head> <title>Counter Page</title> </head> <body bgcolor="white"> <%-- Increment Counters --%> <c:set var="sessionCounter" scope="session" value="${sessionCounter + 1}"/> <c:set var="applCounter" scope="application" value="${applCounter + 1}"/> <h1>Counter page</h1><p> This page has been visited <b>${sessionCounter}</b> times within the current session<br/> and <b>${applCounter}</b> times by all users since the application was started.</p> </body> </html> In my Web.xml I have this: <taglib> <taglib-uri>http://java.sun.com/jstl/core</taglib-uri> <taglib-location>/WEB-INF/c.tld</taglib-location> </taglib> Nothing helps. Any suggestions? -- George Hester __________________________________ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]