one and only way to store the request object
is  jsp forward or include
<jsp:forward page="myanotherpage.jsp" />
or
<jsp:include page="myanotherpage.jsp" />

you will get whole request object as it is

----- Original Message -----
From: "Ankur Jain" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 28, 2001 11:51 AM
Subject: putting request object in session.


> Hi,
>
>      I have a senario wherein I need to pass the request object from the
> sevlet to the jsp's for that particular session. So I put the request
> object itself in the session as setAttribute("request",this.request); but
> since the request object is not serializable I am not able to put it in
the
> session. Is there any other way by which I can put the request object in
> the session, and get it in the JSP's for the same session.
>
> Thanks in advance,
> Ankur
>
>
___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to