mausam
Posts: 243
Nickname: mausam
Registered: Sep, 2003
|
|
Re: URL Rewriting?
|
Posted: Sep 21, 2003 10:01 PM
|
|
http://www.kfunigraz.ac.at/edvndwww/books/books/javaenterprise/servlet/ch07_03.htm
http://www.orbeon.com/oxf/doc/reference-url-rewriting
URL Encoding is a process of transforming user input to a CGI form so it is fit for travel across the network -- basically, stripping spaces and punctuation and replacing with escape characters. URL Decoding is the reverse process. To perform these operations, call java.net.URLEncoder.encode() and java.net.URLDecoder.decode() (the latter was (finally!) added to JDK 1.2, aka Java 2).
Example: changing "We're #1!" into "We%27re+%231%21"
URL Rewriting is a technique for saving state information on the user's browser between page hits. It's sort of like cookies, only the information gets stored inside the URL, as an additional parameter. The HttpSession API, which is part of the Servlet API, sometimes uses URL Rewriting when cookies are unavailable.
Example: changing <A HREF="nextpage.html"> into <A HREF="nextpage.html;$sessionid$=DSJFSDKFSLDFEEKOE"> (or whatever the actual syntax is; I forget offhand)
Hope the aliens dont mess with my posting....
|
|