Hello,

How do you include a link in your code which triggers an Action
which has no Form. The Action class will activate a global
forward.
I hope somebody can help me since I am on this problem for
two days now and have search the whole list, docs and both
Struts-books.
A simple direction where to look any further would be of much
help.

Thank you,

Bert Catsburg



Code samples:

JSP with the link:
------------------
  <p><html:link page="/petrol">Petrol</html:link></p>

Struts Config
-------------
    <global-forwards>
       <forward name="index" path="/index.jsp" />
    </global-forwards>

    <!-- Process a Petrol request -->
    <action    path="/petrol"
               type="senktar.PetrolAction"
               scope="request" />

PetrolAction.java
-----------------
  package senktar
  public class PetrolAction extends Action {
    public ActionForward execute(ActionMapping mapping,
                                HttpServletRequest request,
                                HttpServletResponse response)
    throws Exception {

      ..... // Lines of code

      return mapping.findForward("index");
    }
   }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to