119 lines
3.6 KiB
XML
119 lines
3.6 KiB
XML
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||
|
<!DOCTYPE struts-config PUBLIC
|
||
|
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
|
||
|
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
|
||
|
|
||
|
<struts-config>
|
||
|
|
||
|
<!-- ========== Form Bean Definitions =================================== -->
|
||
|
<form-beans>
|
||
|
<form-bean name="form" type="interOp.test1.Struts1$OldForm" />
|
||
|
</form-beans>
|
||
|
|
||
|
<!-- ========== Global Forward Definitions ============================== -->
|
||
|
<global-forwards>
|
||
|
|
||
|
</global-forwards>
|
||
|
|
||
|
<!-- ========== Action Mapping Definitions ============================== -->
|
||
|
<action-mappings>
|
||
|
<action
|
||
|
path="/test1/gotoStrutsJSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test1/Struts1/Struts1.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test1/gotoJpf2"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test1/Controller2/Jpf2.jpf" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test2/gotoStrutsJSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test2/Struts1/Struts1.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test2/gotoDone"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test2/Done.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test3/gotoStrutsJSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test3/Struts1/Struts1.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test3/gotoDone"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test3/Done.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test4/gotoStrutsJSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test4/Struts1/Struts1.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test4/gotoDone"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test4/Controller2/done.do" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test5/gotoStrutsJSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test5/Struts1/Struts1.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test5/gotoGlobal"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test5/Controller1/globalAction.do" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test5/gotoStruts2JSP"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test5/Struts1/Struts2.jsp" >
|
||
|
</action>
|
||
|
|
||
|
<action
|
||
|
path="/test5/gotoDone"
|
||
|
name="form"
|
||
|
scope="session"
|
||
|
type="org.apache.struts.actions.ForwardAction"
|
||
|
parameter="/interOp/test5/Controller1/jpf1Done.do" >
|
||
|
</action>
|
||
|
|
||
|
</action-mappings>
|
||
|
|
||
|
|
||
|
</struts-config>
|