**************************************************

I am not able to find the error!

If I use the deploytool and specify
<%@ taglib uri="yourTagLibURI" prefix="yourTagPrefix" %>
the it says
org.apache.jasper.JasperException:
Unable to open taglibrary
http://10.10.10.105:8080/Tag/WEB-INF/firsttaglib.tld :
Could not locate TLD META-INF/taglib.tld

I HAVE NOT defined anything named taglib.tld in my JSP files nor in
Servlets!



Another thing I can't understand is this:
If I open the 2 examples you can found in java.sun WebSite , in
particular iteration.war I can see the list of content and you can see
WEB-INF and META-INF
 BUT HOW I CAN ADD them to my content's list since they are
directories!!


So, iteration.war works well , shall I try to add my servlets (3) and
JSP (1) to that Web Component and deploy it??


**************************************************
Subject: Re: Unable to open taglibrary

You also need to add this in your web.xml file or corresponding file for
yoiur jsp
engine
    <taglib>
       <taglib-uri>
            yourTagLibURI
       </taglib-uri>
       <taglib-location>
              /WEB-INF/lib/aromTags.tld
       </taglib-location>
    </taglib>

Martin Cooper a �crit :

> You need a taglib directive in your JSP file. Try adding something
like:
>
> <%@ taglib uri="yourTagLibURI" prefix="yourTagPrefix" %>
>
> at the beginning of your JSP.

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to