Hi,
I have created a
Struts web application. It consists of login page,action class,form bean & success
jsp page. when i click on the submit button in login page, the control has to go to action class & so on. Based on the logic , i have created code.
I am getting the following exception when the login.jsp page is loaded,
org.apache.JasperException: File "/WEB-INF/lib/struts-html.tld" not Found 1. Login.jsp
<%@ taglib uri="/WEB-INF/lib/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/lib/struts-logic.tld" prefix="logic"%>
<html:form name="Login" action="LoginAction">
Name : <html:text property="name"></html:text><br>
Password : <html:text property="password"></html:text><br>
<html:submit>Submit</html:submit>
</html:form> I am sure that all tld files(struts-html.tld,struts-logic.tld etc) are in
/WEB-INF/lib/ and am using Tomcat5.0.2
Even though i keep all tld files in required directory, i am getting "tld not found" error.
Even i tried another option like this
<taglib>
<taglib-uri>/WEB-INF/lib/struts-html.tld</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/lib/struts-logic.tld</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-logic.tld</taglib-location>
</taglib> Does anybody say why it is giving an error?
Is there any
tomcat version problem?
Thanks
Arulraj