Hello Thorsten, List,

I am far away form being a pro with this but it seems to me I have the same problem with an out of the box app. It's only a beta but all concerning taglibs seems fine within the app (it's running for other people on other tomcat versions) and on the other hand the taglibs just can not be found by tomcat 4.1.18.

three possible conclusions:

a) there is an error with the tomcat versions 4.1.18/19 (tested it with .19 also)
b) it's a more general error in our configurations
c) sth else

Maybe you could think about b) At the moment I have no time to do more research on this, if you can find out sth it would be nice if you'd post it here.

Cherio,

Henning



THG wrote, On 2/13/2003 10:22 AM:

On Wed, 12 Feb 2003 18:22:26
sorry, i meant
"/WEB-INF/classes/org/sourcepark/taglibs/kato/db_dropdown.class"
and not
"/WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class".

It's already there... with Tomcat 3.2.1 there are no problems,
but with Tomcat 4.1.18, the taglibs are not interpreted.
It seems to me, that the tld's are not parsed or could be found?!

Thorsten



Sean Dockery wrote:

Your actual tag class implementation should be located in...

/WEB-INF/classes/org/sourcepark/taglibs/kato/db_dropdown.class

...which is very different from your...

/WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class

This also means that the first line in your db_dropdown.java source file
must be...

package org.sourcepark.taglibs.kato;

...and your source file must be recompiled (and copied to
/WEB-INF/classes/org/.../db_dropdown.class)

Let me know if this helps.

----- Original Message -----
From: "THG" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Wednesday, February 12, 2003 16:50
Subject: Re: Taglibs are not interpreted with Tomcat 4.1.18



On Wed, 12 Feb 2003 13:13:09
Sean Dockery wrote:

Uh, no. tagclass is not defined anywhere in your original message. You
omitted it.

<tag>
<tagclass>what did you put in here?</tagclass>
</tag>

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library

1.1//EN"

"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd";>

<taglib>
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>kato</shortname>
<uri>/WEB-INF/katolib.tld</uri>
<tag>
<name>db_dropdown</name>

<tagclass>org.sourcepark.taglibs.kato.db_dropdown</tagclass>

<bodycontent>tagdependent</bodycontent>
...
</tag>
....
</taglib>

the "tagclass" (for example) exists under

"/WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class"



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

Reply via email to