Struts 1.3 Action クラスでは、次のように値を返します。
return mapping.findForward("success");
そのアクションのアクションタグで「成功」が定義されていない場合はどうなりますか
<action path="/helloWorld"
type="com.action.HelloWorldAction"
name="helloWorldForm">
<forward name="good" path="/Good.jsp"/>
<forward name="bad" path="/Bad.jsp"/>
</action>