Código:
Mi problema es que si pongo esta linea en ese .jsp:<html:form action="cuestionario.do" method="post"> <bean:write name="cuestion" property="pregunta"></bean:write><br> <input type="text" name="respuesta" /> <html:submit value="Enviar"/> </html:form>
<html:form action="cuestionario.do" method="post">
Me da el sgte error:
Código:
y en mi struts.congif.xml tengo:javax.servlet.ServletException: javax.servlet.jsp.JspException: Form bean not specified on mapping for action: "cuestionario.do" javax.servlet.jsp.JspException: Form bean not specified on mapping for action: "cuestionario.do"
Código:
Alguien sabe porque el error?<action-mappings> <action path="/cuestionario" type="com.scor.actions.ComenzarEntrevista"> <forward name="comenzar" path="/entrevista.jsp"/> </action> </action-mappings>
Saludos