How to Support Session of User Using URL Rewriting
807600May 26 2007 — edited Dec 14 2008For URL Rewriting(Cookie disabled by browser) we need to pass the session id as a part of request line.
eg:
<html>
<head></head>
<body>
A test page showing two URLs:<br>
<a href="/servlet/ReportServlet;[bjsessionid=C084B32241B2F8F060230440C0158114">
View Report</a><br>
<a href=
"/servlet/AccountServlet;jsessionid=C084B32241B2F8F060230440C0158114">View Account</a><br>
</body>
</html>
Now this seems to be hardcoding of URL as shown above , so how the seesion id will be appended in request line for new request in URL Rewriting.
Please Answer as soon as possible.