Action not getting called
-------------------------
Key: WW-2472
URL: https://issues.apache.org/struts/browse/WW-2472
Project: Struts 2
Issue Type: Bug
Affects Versions: 2.0.0
Environment: Struts Action not getting called
Reporter: sagar
When i use following code the action class is not invoked :
<action-mappings>
<action path="/check" type="com.ex.action.Check" parameter="mode" >
<forward name="go" path="/jsp/check.jsp" />
</action>
</action-mappings>
But when I use this code it works
<action-mappings>
<action path="/check" type="com.ex.action.Check" parameter="mode"
forward="/jsp/check.jsp"/>
</action-mappings>
Please help. How can I invoke the Action class. Thanks
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.