My action class like this
public ActionForward userProfileMaint (ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
HttpSession session = request.getSession();
session.setAttribute("rolehref", "userProfileMaint");
return mapping.findForward("success");
}
my struts-config.xml
<action path="/userProfileMaint"
type="com.erp.struts.SetRoleHref"
parameter="userProfileMaint"
scope="request">
<forward name="success" path="user.showRoleProgram" />
</action>
The result is
javax.servlet.ServletException: Request[/userProfileMaint] does not
contain handler parameter named 'userProfileMaint'. This may be caused
by whitespace in the label text.
What can I do?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]