Cuz the request object is just that - valid for the life of an individual
request.
If you want to store request-related data, like parameters or whatever, you
have to extract them from the request.
- r
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: June 14, 2001 9:06 AM
> To: [EMAIL PROTECTED]
> Subject: session object
>
>
> Hi !
>
> I don't understand why but when I put the request object in
> the session :
>
> session.setAttribute("request", request);
>
> and try to retrieve it later in another jsp page :
>
> request = (HttpServletRequest) session.getAttribute("request");
>
> I constat that my request object is egal to null
>
> WHY !!!!!
>
>
> Patrick PIERRA
>