Link to home
Start Free TrialLog in
Avatar of optocontrol
optocontrol

asked on

No se puede encontrar el método de escritura para el atributo:

Hello, I´m having the error "org.apache.jasper.JasperException: /autenticacion.jsp(28,0) No se puede encontrar el método de escritura para el atributo: name", my development IDE is Netbeans 5.0 and the JSP's are deployed in Tomcat Apache 5.5.9. As far as I know, the way to program the JSP is rigth , but obviously somethig is wrong.
The code in the JSP is:

<html:form action="Autenticacion" name="autenticacionForm" type="allthepackagesinthesystem.AutenticacionForm">

  <table width="400" border="0" align="center">
    <tr>
      <td colspan="2" bgcolor="#292829">
        <div align="center">
          <p><font color="#FFFFFF" face="Verdana">Autenticaci&oacute;n
          de usuario</font></p>
        </div></td>
    </tr>
    <tr>
      <td width="41%"><div align="right"><font color="#FFFFFF" face="Verdana">Login</font></div></td>
      <td width="59%"><div align="left"><font color="#FFFFFF" size="5" face="Courier">
        <html:text property="usuario"/>
        &nbsp;</font></div></td>
    </tr>
    <tr>
      <td><div align="right"><font color="#FFFFFF" face="Verdana">Password</font></div></td>
      <td>
        <div align="left">
        <html:password property="clave"/>
        </div></td>
    </tr>
    <tr>
      <td height="8" colspan="2"><div align="center"><font color="#FFFFFF" size="5" face="Courier">      
            <input name="Limpiar" type="reset" id="Limpiar" value="Limpiar">
        </font><font color="#FFFFFF" size="5" face="Courier">&nbsp;
          <input type="submit" name="Submit" value="Ingresar">
        </font></div></td>
    </tr>
    <tr>
      <td height="8" colspan="2" bgcolor="#4D4A4D"><div align="center"><font color="#FFFFFF" face="Verdana">Digite
        sus datos para ingresar al sitio </font></div></td>
</tr>
  </table>
  </html:form>

Thanks in advance!
ASKER CERTIFIED SOLUTION
Avatar of fargo
fargo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of fargo
fargo

in the last post, i mean to say remove both name and type as shown.