Does forward() forward any request parameter or attributte value?
Hi, All
I use RequestDispatcher forward(ServletRequest request, ServletResponse response) to forward to a new page. My case is like: any user go to our login page from our client page's link. When an user has logined, the user is allowed to use our web service in a certain time, once the time expired, we will redirect to the client page. We don't want to bring any parameter or value in the request object. I just wonder if I use RequestDispatcher forward() to the client page, will the request object bring all value which is stored in it or not? They include cookies, attributes, headers, etc.
Thanks

