This is the application I am studying. The index.jsp
of the application contains two lines:
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<logic:redirect forward="welcome"/>
What is the meaning of this redirect forward? Is the
browser asked to submit a new request to the path with
logical name "welcome"?
I then searched the config.xml file,
<global-forwards>
<!-- default forwards -->
<forward
name="baseStyle"
path="/article/assets/styles/base.css"/>
<!-- MENU forwards -->
<forward
name="welcome"
path="/do/Menu"/>
<forward
name="cancel"
path="/do/Menu"
redirect="true"/>
<forward
name="done"
path="/do/Menu"/>
.......
</global-forwards>
The path of the logical name "welcome" is "do/Menu".
However, there is no Menu ActionServlet in the
application.
There is Menu.jsp in the application. Does this
application displays the Menu.jsp file when first
deployed?
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]