There was a post on the user list several weeks ago about JSPs and Tomcat 5 not 
working together; perhaps there's a clue there?
http://www.mail-archive.com/[EMAIL PROTECTED]/msg08828.html

>>> [EMAIL PROTECTED] 07/24/03 09:46AM >>>
Hi Sirs,
 
I have installed Tomcat 5 in my system and I try to run one simple JSTL jsp page, some 
error has come. Please help me to give one solution to this.Please send the help file 
for configuring Tomcat 5 to run JSTL..The error is "org.apache.jasper.JasperException: 
The absolute uri: http://java.sun.com/jstl/core_rt cannot be resolved in either".
The code is 
<%@ taglib uri="http://java.sun.com/jstl/core_rt"; prefix="c" %>
<html>
    <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>
 
Regards

Sheejo





---------------------------------
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to