I am running into an issue when trying to deploy a simple JSTL app on tomcat 6.0.
The exception is - rg.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
I have a 2.4 version of the web.xml
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
And the jsp page has the URI specified as
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
The standard.jar and jstl.jar from the 1.1 release is in the lib directory...
What am I missing here - ??