I notice in the struts.jar that the tld's are kept in META-INF/tlds, rather than any WEB-INF I'm using an include file in my JSPs that contains the <%@ taglib prefix="html" uri="/WEB-INF/tld/struts-html.tld" %>
Since I'm not using too many, I just include thist tagdecl.jspf in all my JSPs I'm using maven and I'd like to avoid all that versioning stuff in the web.xml, for example: <taglib> <taglib-uri>/WEB-INF/tld/struts-html.tld</taglib-uri> <taglib-location>/WEB-INF/tld/struts-html-1.1.tld</taglib-location> </taglib> it's far more convenient to just use the taglibs that comes with the struts-#.jar So, two questions: 1) <taglib> <taglib-uri>/META-INF/tld/struts-html.tld</taglib-uri> <taglib-location>/META-INF/tld/struts-html-1.1.tld</taglib-location> </taglib> 2) Is struts going to continue to keep the taglibs in META-INF, or is this a temporary thing? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

