It's blowing up becuase it can't find the tag library descriptor (TLD).
Your URI is telling to look on the web (http://java.sun.com/jstl/core).

Check that URI again.  
You shouldn't have to past any Jars.




On Friday 05 December 2003 02:44 pm, Elam Daly wrote:
> Howdy all,
>
> I am going through OReilly's JavaServer Pages, 2nd edition and am having
> problems with the first example:
>
> *<%@ page contentType="text/html" %>*
> *<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %>*
> <html>
>   <head>
>     <title>JSP is Easy</title>
>   </head>
>   <body bgcolor="white">
>
>     <h1>JSP is as easy as ...</h1>
>
>     <%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
>     1 + 2 + 3 = *<c:out value="${1 + 2 + 3}" />*
>
>   </body>
> </html>
>
> And am getting the error:
>
> org.apache.jasper.JasperException: The absolute uri:
> http://java.sun.com/jstl/core cannot be resolved in either web.xml or the
> jar files deployed with this app.
>
> From perusing the mail archives, I think this has something to do with a
> jar file not being in the proper place. Anyone help?
>
> Thanks,
> Elam Daly
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison & Company, Inc.



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

Reply via email to