Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Java > Java and JDK > JSP Basics
|
JSP Basics Beginning-level questions on JSP. More advanced coders should post to Pro JSP.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the JSP Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 17th, 2006, 01:26 PM
Registered User
 
Join Date: Mar 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default unable to run prog

i am not able to execute the foll. prog


<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<body>
You send the foll reg 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>


the errors i am getting are



org.apache.jasper.JasperException: 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
    org.apache.jasper.compiler.DefaultErrorHandler.jsp Error(DefaultErrorHandler.java:50)
    org.apache.jasper.compiler.ErrorDispatcher.dispatc h(ErrorDispatcher.java:411)
    org.apache.jasper.compiler.ErrorDispatcher.jspErro r(ErrorDispatcher.java:118)
    org.apache.jasper.compiler.TagLibraryInfoImpl.gene rateTLDLocation(TagLibraryInfoImpl.java:316)
    org.apache.jasper.compiler.TagLibraryInfoImpl.<ini t>(TagLibraryInfoImpl.java:147)
    org.apache.jasper.compiler.Parser.parseTaglibDirec tive(Parser.java:418)
    org.apache.jasper.compiler.Parser.parseDirective(P arser.java:483)
    org.apache.jasper.compiler.Parser.parseElements(Pa rser.java:1539)
    org.apache.jasper.compiler.Parser.parse(Parser.jav a:126)
    org.apache.jasper.compiler.ParserController.doPars e(ParserController.java:220)
    org.apache.jasper.compiler.ParserController.parse( ParserController.java:101)
    org.apache.jasper.compiler.Compiler.generateJava(C ompiler.java:203)
    org.apache.jasper.compiler.Compiler.compile(Compil er.java:470)
    org.apache.jasper.compiler.Compiler.compile(Compil er.java:451)
    org.apache.jasper.compiler.Compiler.compile(Compil er.java:439)
    org.apache.jasper.JspCompilationContext.compile(Js pCompilationContext.java:511)
    org.apache.jasper.servlet.JspServletWrapper.servic e(JspServletWrapper.java:295)
    org.apache.jasper.servlet.JspServlet.serviceJspFil e(JspServlet.java:292)
    org.apache.jasper.servlet.JspServlet.service(JspSe rvlet.java:236)
    javax.servlet.http.HttpServlet.service(HttpServlet .java:802)


i would like to know what files must be present under WEB-INF/lib
i had intalled jakarta-taglibs standard 1.0.2





Similar Threads
Thread Thread Starter Forum Replies Last Post
unable to run my project ajeetmittal General .NET 0 June 11th, 2007 05:41 AM
Error while trying to run project : Unable to star hums ASP.NET 1.0 and 1.1 Basics 9 July 20th, 2006 06:15 PM
Unable to run my application remotely? gowthamsen ASP.NET 1.0 and 1.1 Professional 1 February 20th, 2006 10:57 AM
Error while trying to run the project: Unable to d rktalla .NET Web Services 1 September 28th, 2004 02:48 AM
Unable to Run TOMCAT !!! PLS HELP anilsantas Apache Tomcat 1 April 15th, 2004 01:30 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.