Click here to Skip to main content
15,896,726 members

Error:"does not contain haErndler parameter named 'method'. This may be caused by whitespace "

amitpinku8309 asked:

Open original thread
Hi I'm amit and getting this error: for this code:

struts-config.xml
XML
<form-beans>
        <form-bean name="TestForm" type="TestForm"/></form-beans>

XML
<action-mappings>
        <action input="/jsp/index.jsp" name="TestForm" parameter="test" path="/test" scope="request" type="TestDispatchAction"/>
        <forward name="pass" path="/jsp/Next.jsp"/>
        <forward name="fail" path="/jsp/index.jsp"/>
        <forward name="success" path="/jsp/welcomeStruts.jsp"/>
    </action-mappings>

index.jsp
XML
<html:form action="/test.do?parameter=test">
 Name: <html:text property="textName"/><br>
 Password:   <html:password property="textPass"/><br>
 <html:submit property="loginButton" value="Login Here"/>
 <html:submit property="testButton" value="Test Only"/>
 </html:form>

TestDispatchAction
Java
public class TestDispatchAction extends DispatchActio
 {  private final static String SUCCESS = "success";
    public ActionForward loginAction(ActionMapping mapping, ActionForm  form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        TestForm f=(TestForm)form;
        String name=f.getTextName();
        String pass=f.getTextPass();
        String logic="fail";
        if(name.equals(pass))
        {
            logic="pass";
        }
        else
        {
            logic="fail";
        }
        return mapping.findForward(logic);
    }

    public ActionForward testAction(ActionMapping mapping, ActionForm  form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        TestForm f=(TestForm)form;

        return mapping.findForward(SUCCESS);
    }
}
Tags: Java, Struts

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900