| Author |
I have doubt, response.sendRedtrect
|
ramesh gosala
Greenhorn
Joined: Sep 30, 2006
Posts: 7
|
|
Hi, I have doubt regading...response.sendRedtrect, That is, it possible to send Session object, one server to another server..using response.sendRedirect. i would very thankful to give this answer, Thank you Ramesh
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
It is not. The sendRedirect method merely sends a 302 response code to the browser along with a 'Location' response header. This causes the browser to make a brand new request to the specified URL.
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
Muhammad Saifuddin
Ranch Hand
Joined: Dec 06, 2005
Posts: 1318
|
|
Thanks ben, or what about the two method of HttpServletResponse Interface encodeURL and encodeRedirectURL, They are used to append the session ID to the URL. encodeRedirectURL Java Doc can you please enlighten on these method. Is it possible to pass your session to another server with the help of these methods? if not then... Any suggestion
|
Saifuddin..
[Linkedin] How To Ask Questions On JavaRanch My OpenSource
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
Those methods only embed the session ID within the URL. Your HTTPSession is an object that resides within your webapplication. It can't be passed to other servers.
|
 |
Muhammad Saifuddin
Ranch Hand
Joined: Dec 06, 2005
Posts: 1318
|
|
Thanks Ben, to make me clear.
|
 |
 |
|
|
subject: I have doubt, response.sendRedtrect
|
|
|