Subject: Struts ActionForm InstantiationException...?
From: "Scott Curtis" <[EMAIL PROTECTED]>
 ===
Hi,

I have written a Form class that extends ActionForm, called LoginForm.java
I have also written an Action class called LoginAction.java
I have written an ActionMapping as follows:

<action path="/login"
    type="com.scurtis.web.action.LoginAction"
    name="loginForm"
    scope="request"
    input="/login.jsp">
    <forward name="success" path="/feedback.jsp" />
</action>

<form-beans type="org.apache.struts.action.ActionFormBean">
    <form-bean name="loginForm"
    type="com.scurtis.web.forms.LoginForm" />
</form-beans>

In my jsp I am have the following:

<html:form action="login.do">
    <html:text property="loginName" maxlength="60" size="40" />
    <html:text property="password" maxlength="60" size="40" />
</html:form>

For some reason when I try to load the jsp I get the following error:

javax.servlet.jsp.JspException: Exception creating bean of class
com.scurtis.web.forms.LoginForm: java.lang.InstantiationException:
com/scurtis/web/forms/LoginForm

I would really appreciate if someone could shed some light onto why this
might be happening and how to fix it. I have written a lot of forms (all in
the same project) and they all work.

Many thanks in advance.
 -scott




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to