Eric
    I know what is happening with this action now. I still don't know why,
but now I what is happening. We had a index.jsp on the server root which
redirected to the login screen. When we used that JSP, the information of
the session got lost. So we are not using it right now and everything seems
to be working fine. I am going to include here the JSP code, since it is
very small. Let me know if you find anything unusual.

<%

RequestDispatcher dispatcher =
request.getRequestDispatcher("/servlet/instaservi");
if (dispatcher != null)
{
 try
 { dispatcher.forward(request, response);
 }catch (Exception e) {e.printStackTrace();}
}

%>

By the way, when we don't use the JSP we use the following URL:
/instaservi/servlet/instaservi. Seems to me that the problem is around the
changes on the URL's from /servlet/instaservi to
/instaservi/servlet/instaservi. Could that be?

Rodrigo


----- Original Message -----
From: "Eric Emminger" <[EMAIL PROTECTED]>
To: "Turbine Users List" <[EMAIL PROTECTED]>
Sent: Wednesday, February 19, 2003 2:30 PM
Subject: Re: Session problems...


> Rodrigo
>
> > I am having problems with sessions. I am storing some object references
in
> > my session, but they dissapear when I jump to a specific action. I send
the
>
> Are you storing them directly in the HTTPSession in the Servlet API, or
> in a Turbine way like data.getUser().setTemp()?
>
> > contents of the session to catalina.out as soon as the action starts, so
> > there is very little possibility (0.000001%) of overwritting or deleting
the
> > reference. Still, the session is there but it no longer contains the
> > references I stored. Any idea what is going on? The session doesn't seem
to
> > be invalid since it is not throwing any exceptions when asked for
> > attributes. Thanx
>
> Why just this specific action? Is it special in some way? Are you doing
> something different with authentication/authorization? Send more info.
>
> Eric
>
> --
> Eric Emminger
> [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>



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

Reply via email to