On 4/19/07, Crawford, Preston <[EMAIL PROTECTED]> wrote:
So I'm helping my company clean up some JSP files, things like that and I'm seeing declarations like this. <%@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/html" prefix="html" %>
The ability to automatically find TLD files is a feature of the web container, not of Struts. If you're using a 2.3 container, the tag libraries will be found under the URI that's specified in their DTDs. While I may be wrong, I think between Struts 1.2.9 and 1.3.5, Struts switched from jakarta.apache.org to struts.apache.org and thus you find different URIs between versions. As for the URIs you see above, those are from developers defining the location of the TLD explicitly in their web.xml Paul