Struts Tomcat 5 Taglib issue

W

WJ

I just installed tomcat 5 (5.0.27) and am deploying a simple app. The jsp's
are erroring out saying it cannot find the tag libs defined.

Here is how I am including the tags at the top of the JSP's:

<%@ taglib uri="/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/tlds/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/tlds/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/tlds/struts-logic.tld" prefix="logic" %>

My entries in web.xml are thus:

<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>
 
S

Sudsy

WJ said:
I just installed tomcat 5 (5.0.27) and am deploying a simple app. The jsp's
are erroring out saying it cannot find the tag libs defined.

Here is how I am including the tags at the top of the JSP's:

<%@ taglib uri="/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/tlds/struts-bean.tld" prefix="bean" %>
<snip>

This specifies the URI as "/tlds/struts-bean.tld"
My entries in web.xml are thus:

<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>

Here you define a URI of "/tags/struts-bean".
Did you not realize that they have to match?
Change one or the other.
 
W

WJ

I've also tried this with

<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>

adding the beginning slash. Still no luck.
 
W

WJ

Thanks Sudsy. That fixed. What blows me away is I pulled the stripped
web.xml from a work project using struts (in Weblogic).

I thought I hadn't corrupted the tags, but either I did or Weblogic
interprets these differently. Probably the former. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,074
Latest member
StanleyFra

Latest Threads

Top