I've put my little webapp in tomcat (without forte)
and it work... so, I'll do some more test ... may be
was some forte problem?

thanks anyway!

Horacio



On Thu, 25 Jul 2002 11:34:06 -0300
Horacio de Oro <[EMAIL PROTECTED]> wrote:

> On Thu, 25 Jul 2002 22:10:31 +0800
> "Andrew Hill" <[EMAIL PROTECTED]> wrote:
> 
> > Does your action class actually extends Action?
> > 
> 
> yes...
> see below:
> 
> > 
> > 
> > The Action class:
> > 
> > 
> > package prueba2;
> > 
> > 
> > import java.util.Hashtable;
> > import java.util.Locale;
> > import java.util.Vector;
> > import javax.servlet.RequestDispatcher;
> > import javax.servlet.http.HttpServletRequest;
> > import javax.servlet.http.HttpSession;
> > import javax.servlet.http.HttpServletResponse;
> > import org.apache.commons.logging.Log;
> > import org.apache.commons.logging.LogFactory;
> > import org.apache.struts.action.Action;
> > import org.apache.struts.action.ActionForm;
> > import org.apache.struts.action.ActionForward;
> > import org.apache.struts.action.ActionMapping;
> > import org.apache.struts.action.ActionServlet;
> > import org.apache.struts.util.MessageResources;
> > 
> > public final class LogoffAction extends Action {
> > 
> >     public ActionForward execute(ActionMapping mapping,
> >                              ActionForm form,
> >                              HttpServletRequest request,
> >                              HttpServletResponse response)
> >     throws Exception {
> > 
> >     HttpSession session = request.getSession();
> >     session.invalidate();
> > 
> >     // Forward control to the specified success URI
> >     return (mapping.findForward("success"));
> > 
> >     }
> > }
> > 
> 
> --
> 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]>

Reply via email to