My understanding is that its anything you can forward to - ie: jsp, servlet, another action
-----Original Message----- From: Chris Cairns [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 15:23 To: [EMAIL PROTECTED] Subject: Brain Teaser Could someone explain to me what the path attribute for the action mappings element is for? I know it's the path of the action, but what sort of file is it? jsp? <struts-config> <form-beans> <form-bean name="logonForm" type="org.apache.struts.example.LogonForm" /> </form-beans> <global-forwards type="org.apache.struts.action.ActionForward" /> <forward name="logon" path="/logon.jsp" redirect="false" /> </global-forwards> <action-mappings> <action path="/logon" type="org.apache.struts.example.LogonAction" name="logonForm" scope="request" input="/logon.jsp" unknown="false" validate="true" /> </action-mappings> </struts-config> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

