Like probably thousands of others, I'm trying to write a simple portal
using Struts 1.0.2. I'm getting the following error that I can't figure
out.
org.apache.jasper.JasperException: No bean found under attribute key
registerForm
I've also included a snippet from my struts-config.xml. Seems like the
form names match to me. Am I missing something?
[SNIP]
<form-beans>
<form-bean name="registerForm"
type="com.fmr.fpc.struts.RegisterForm"/>
</form-beans>
[SNIP]
<action-mappings>
<action path="/Register"
type="com.fmr.fpc.struts.RegisterAction"
name="registerForm"
scope="request"
input="/Register.jsp">
</action>
</action-mappings>
[SNIP]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]