> what is urlrewriting.give one example with explanation please
Wow, I for one don't know what you're talking about. How about YOU give
US an explanation?
/Deniz Dogan
Hi,
URL rewriting is something your application has to do if the client
does not support cookies and you want to support such clients. Easy way
out is deny access to your app (a lot of sites do that, but it works
for internal apps and not for apps made available for general public),
or code your app to use response.encodeURL(theurl) and
response.encodeRedirectURL(theurl) in your app. Assuming you're using
JSPs on the front end, wherever you have stuff like <a href> and
post/get submit URLs, replace them with
<%=reponse.encodeURL("yoururl.do")%> and if you want to redirect and
keep the session, use response.encodeRedirectURL("reditectedurl")
Hope this helps. You might want to try plain old google search for such
questions.
-cheers,
Manish
> what is urlrewriting.give one example with explanation please