<html:messages id="error"> <bean:write name="error"/> </html:messages>
and get the following error:
org.apache.jasper.JasperException: /pages/Logon.jsp(7,0) No such tag messages in the tag library imported with prefix html
Of course it looks like I'm somehow referencing the 1.0 version of struts-html, but I don't see how that can be.
In web.xml I've got:
<taglib>
<taglib-uri>/tags/struts-html</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
</taglib>and the struts-html.tld in /WEB-INF/lib contains:
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
...
<tag>
<name>messages</name>
<tagclass>org.apache.struts.taglib.html.MessagesTag</tagclass>
<teiclass>org.apache.struts.taglib.html.MessagesTei</teiclass>
...
Any ideas???
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

