How can I tell struts-config.xml to forward to a link?
I wanted struts-config.xml to go to this site after it done.

http://www.cisco.com

What is the correct syntax to use when one wanted to have an 
action to goto within the struts-config.xml?  

I am running tomcat 5.0.7


Thanks much,

Tom



<!-- ========== Action Mapping Definitions ======== -->
  <action-mappings>
    <action
        path="/login"
        type="test.struts.LoginAction" >

            <forward name="valid" 
path="http://www.cisco.com";>
            <forward name="invalid" 
path="/jsp/LoginView.jsp" />
        </action>
  </action-mappings>

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to