Thanks for your reply shailesh.
This is the form iam using. I am concatenating a
string with the action attribute path,i.e.DispatchAction Method.
<form action="setValues.do?method=execute" method="get">
First Name:<input type="text" name="t1" value=""/>
Last Name:<input type="text" name="t1" value=""/>
Middle Name:<input type="submit" value="submit"/>
</form>
my struts-config.xml file
<struts-config>
<form-beans>
<form-bean name="myPath" type="com.spry.forms.ValueFB"/>
</form-beans>
<action-mappings>
<action name="myPath" path="/setValues" type="com.spry.actions.ValueDispatchAction" parameter="method"/>
</action-mappings>
</struts-config>
when i use method="get", i am getting dispatch action method not found..
but this problem resolved,when i used method="post"..
Actually what i need to know is the reason why the dispatch action method not found when i used method="get".
Please tell me..
Thanks in Advance,