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.

