Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

(http://java.sun.com/jstl/core) cannot be resolved in either web.xml

843836Jan 24 2005 — edited Jan 24 2005
Hi Everyone,

Ok it seems that a lot of people are having this problem, and it's driving me nuts.

--
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<HTML>
<HEAD><TITLE>JSP Test</TITLE></HEAD>
<BODY BGCOLOR="#FDF5E6">

<c:out value="${1 + 2 + 3}"/>
</BODY></HTML>
--

This is giving the following error :
This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application


Changing the first line into :
--
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
--
I don't get that error any more, but now it says :

No such tag out in the tag library imported with prefix c

What the ^%*& is wrong here?

O yes, I'm using Tomcat 4.1 (can't upgrade)

Thanks for any help!!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 21 2005
Added on Jan 24 2005
3 comments
203 views