Darryl wrote:
> 
>      500 Internal Server Error
> 
>      javax.servlet.jsp.JspException: Cannot find ActionMappings
>      or ActionFormBeans collection
>              at
>      org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:703)

Take a look at your logon.jsp

    <html:form action="/admin/logon" focus="username">
                         ^^^
For this action 
Check in struts-config.xml that you have a form instance named

              <action   path="/admin/logon"
                       name="logonForm"
Form Instance Name            ^^^
                       [Items deleted]
              </action>

Tyen check that the form Instance Name has
a class associated with it.

               <form-bean      name="logonForm"
                    type="com.solers.portal.pcontrol.common.LogonForm"/>
Class associated with the Login Instance                ^^^^^^^^    
 
-Rob

Reply via email to