Gruess Gott Nick,

you have to insert a entry for your taglib in the web.xml.
<web-app>
....
        <taglib>
                <taglib-uri>/WEB-INF/struts.tld</taglib-uri>
                <taglib-location>/WEB-INF/struts.tld</taglib-location>
        </taglib>
....

and dont forget to insert something like this in your jsp:

<%@ taglib uri="/WEB-INF/struts-form.tld" prefix="form" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>....



-----Ursprüngliche Nachricht-----
Von: Nick de Voil [mailto:[EMAIL PROTECTED]]
Gesendet: Freitag, 23. November 2001 10:10
An: Tag Libraries Users List
Betreff: Re: Getting my JRun taglib working with Tomcat 3.2.3


Gruess Gott Christian!

> you can put your custom tag classes either in the WEB-INF/classes or - as
a
> JAR-file - in the WEB-INF/lib directory. The TLD must be located somewhere
> in
> the WEB-INF/... directory. It's a good practice to put them in a separate
> directory, such as WEB-INF/tlds (Don't forget to adapt the taglib
directive
> in
> your JSP).

Thanks. What about the web.xml file? Do I have to have that?

Nick



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


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

Reply via email to