In Struts 1.3 Action class, we return value as
return mapping.findForward("success");
What will happen if "success" is undefined in the action tag for that action
<action path="/helloWorld"
type="com.action.HelloWorldAction"
name="helloWorldForm">
<forward name="good" path="/Good.jsp"/>
<forward name="bad" path="/Bad.jsp"/>
</action>