Link to home
Start Free TrialLog in
Avatar of gdkinney_2
gdkinney_2

asked on

Getting a JSTL error message "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"

Getting the following JSTL error:

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

_____________________________________________________________________________

My web.xml has the following tag:

<web-app 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"
    version="2.4">

______________________________________________________________________________

I am using the jar file jstl-1.1.jar

______________________________________________________________________________

and I have the following tag in my jsp file:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

How do I fix this?
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Avatar of gdkinney_2
gdkinney_2

ASKER

CEHJ this is not a Struts project.  I am not using any Struts libraries.
try to place standard.jar in lib directory
Which version of Standard.jar?  Is there more than one version?
Chaituu does everything else I am doing look ok?  My web.xml, the  jstl-1.1.jar and
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> in my jsp?
ASKER CERTIFIED SOLUTION
Avatar of chaitu chaitu
chaitu chaitu
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial