| Author |
encodeURL & encodeRedirectURL
|
Eunis Huang
Greenhorn
Joined: Feb 11, 2002
Posts: 5
|
|
Dear Ranches, How can tell me what the difference is between encodeURL and encodeRedirectURL? Are they both used for URL Rewriting? Many thanks Eunis
|
 |
Madhav Lakkapragada
Ranch Hand
Joined: Jun 03, 2000
Posts: 5040
|
|
I think there was a previous debate on this topic, forgot what it resolved to. But anyways, yes both these methods are used to encode URL's. encodeRedirectURL is used specifically to encode for the sendRedirect(...) method. The difference is in deciding whether to encode the sessionID into the URL or not. - satya
|
Take a Minute, Donate an Hour, Change a Life
http://www.ashanet.org/workanhour/2006/?r=Javaranch_ML&a=81
|
 |
Tim Duncan
Ranch Hand
Joined: Aug 20, 2001
Posts: 150
|
|
Originally posted by Madhav Lakkapragada: The difference is in deciding whether to encode the sessionID into the URL or not.
Both methods will add jsessionid to the URL where necessary, however (according to the API) the logic for working out whether it is necessary, is different for sendRedirect, hence two methods. Any idea why the logic should be different? Tomcat's implementation appears to use the same logic for both cases. [ March 22, 2002: Message edited by: Tim Duncan ]
|
 |
Eunis Huang
Greenhorn
Joined: Feb 11, 2002
Posts: 5
|
|
|
Thanks a lot. I got it
|
 |
 |
|
|
subject: encodeURL & encodeRedirectURL
|
|
|