Guys, you are very good! Please help Mark.

-------- Original Message --------

Subject:  Re: Taglib URI error in Weblogic60
Date:  Wed, 14 Feb 2001 14:22:41 -0500
From:  Maya Muchnik <[EMAIL PROTECTED]>
Reply-To:  [EMAIL PROTECTED]
Organization:  Puma Technology
To:  [EMAIL PROTECTED]
References:  <001d01c096ba$7eef7680$[EMAIL PROTECTED]>

The last my attempt.
Mark,
Do you have "-" in the following or this is your typing:

in jsp

        -<%@ taglib uri="taglib" prefix="input" %>

in web.xml

        -<?xml version="1.0" ?>

Maya

Mark Scott wrote:

>Try to use "/taglib" instead of "taglib" in both
>your JSP pages and and web.xml. Also make sure the "taglib.tld"
>file is actually under the directory "WEB-INF" of your web application

All these are true, I've tried numerous combinations, still the mesg
persists
my jsp is under my webapp root
the web.xml & taglib.tld are both in WEB-INF
see my code below..

Can anyone help with this ?

-----Original Message-----
From: Hui Lin [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 14, 2001 1:35 PM
To: [EMAIL PROTECTED]
Subject: RE: Taglib URI error in Weblogic60

Try to use "/taglib" instead of "taglib" in both
your JSP pages and and web.xml. Also make sure the "taglib.tld"
file is actually under the directory "WEB-INF" of your web application

Hui Lin

-----Original Message-----
From: Mark Scott [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 14, 2001 12:17 PM
To: [EMAIL PROTECTED]
Subject: Taglib URI error in Weblogic60

Hi All,
having some trouble deploying my custom Tag, this is the error...
thanks in advance
Parsing of JSP File '/test/tagpage.jsp' failed:
/test/tagpage.jsp(1): Could not parse deployment descriptor:
java.io.IOException: cannot resolve 'taglib' into a valid tag library
probably occurred due to an error in /test/tagpage.jsp line 1:
<%@ taglib uri="taglib" prefix="input" %>
 ------------------------------
my directories look like this

myserver
        test
            - tagpage.jsp

WEB-INF
-web.xml
-taglib.tld
-------------------------------
my code:

in jsp

        -<%@ taglib uri="taglib" prefix="input" %>

in web.xml

        -<?xml version="1.0" ?>
        <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
        <taglib>
                <taglib-uri>taglib</taglib-uri>
                <taglib-location>/WEB-INF/taglib.tld</taglib-location>
        </taglib>
</web-app>

Reply via email to