JSTL Problem: "The absolute uri (...) cannot be resolved (...)"

I'm experiencing some problems using JSTL. I'm using it for the first time, but it's a pain in the *** so far. I downloaded 'jstl.jar' and 'standard.jar', and saved the whole map 'jakarta-taglibs-standard-1.1.2' in 'C:\Program Files\JAVA', which is the same map as where all the other JAVA-files are stored (J2SE and J2EE).

I'm using Eclipse ObjectWeb Lomboz as IDE, and imported both jars into my application. So now it's in the JRE System Library within Eclipse.

I also added the taglib specifications to web.xml in my project map. The following error occurs when running my JSP-page.

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

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

<html>

<head>

</head>

<body>

<jsp:useBean id="SelectPersoonBean" class="datalayer.SelectPersoonBean" scope="request" />

<table>

<c:forEach var="Personen" items="${SelectPersoonBean.list}">

<tr>

<td>${Personen.Voornaam}</td>

<td>${Personen.Achternaam}</td>

</tr>

</c:forEach>

</table>

</body>

</html>

By the way, the bean works.

Google can't find a site where this error is either discussed or mentioned. Anyone familiar with this error, and in possession of the solution?

Thanks in advance.

[1822 byte] By [Nidhuggura] at [2007-11-27 4:43:18]
# 1
Those JAR's should be available in the classpath of the deployed application. The best way is to put the JAR's in the/WEB-INF/lib of the webapplication.
BalusCa at 2007-7-12 9:55:02 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...