scripter73
Programmer
Hi,
Running Tomcat 4.1 and installed SDK1.4.2.
I just downloaded the JSTL from
and copied the files to my folders:
C:\j2sdk1.4.2..... and c:\Tomcat 4.1\webapps\....\lib.
Here's the code I'm now trying to run (from a book)
<%@ taglib prefix="c" uri=" %>
<html>
<head>
<title>Request Headers</title>
</head>
<body>
You sent the following request headers:
<p />
<table border="1">
<tr>
<th>Header</th>
<th>Value</th>
</tr>
<c: forEach var="entry" items="${header}">
<tr>
<td>
${entry.key}
</td>
<td>
${entry.value}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Can anyone tell me why I keep getting this error message:
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: This absolute uri ( cannot be resolved in either web.xml or the jar files deployed with this application
Seems overly complicated?! just to use a library. Is everything downloaded to the right place? Is there a way to test my JSTL?
Thanks in advance.
scripter73
Change Your Thinking, Change Your Life.
Running Tomcat 4.1 and installed SDK1.4.2.
I just downloaded the JSTL from
and copied the files to my folders:
C:\j2sdk1.4.2..... and c:\Tomcat 4.1\webapps\....\lib.
Here's the code I'm now trying to run (from a book)
<%@ taglib prefix="c" uri=" %>
<html>
<head>
<title>Request Headers</title>
</head>
<body>
You sent the following request headers:
<p />
<table border="1">
<tr>
<th>Header</th>
<th>Value</th>
</tr>
<c: forEach var="entry" items="${header}">
<tr>
<td>
${entry.key}
</td>
<td>
${entry.value}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Can anyone tell me why I keep getting this error message:
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: This absolute uri ( cannot be resolved in either web.xml or the jar files deployed with this application
Seems overly complicated?! just to use a library. Is everything downloaded to the right place? Is there a way to test my JSTL?
Thanks in advance.
scripter73
Change Your Thinking, Change Your Life.