Hi All,
I am trying to understand the need of url rewriting while cookies are disabled in the client browser. I have setup a
Tomcat 5.5 environment on my machine and the web browser is IE 6.0. I access my app using the link
http://localhost:8080/app/xyz.jsp Problem 1: Why can't I see the cookie file that should be created when I access my web application using IE. I tried accessing other websites and found that there cookies are getting created in the Temporary Internet folders.
Problem 2: Even after disabling all cookies including session cookies in IE, my web application continues to work , which should not have happened. I tried checking the JsessionId in each and every
JSP and found that it is one and the same which was not what I expected
After disabling the cookies too other websites continued to create cookies.
When I used Google Chrome with cookies disabled to access my web application, a new session and session Id got created for each request to the JSP file. It gave me the expected result.
Is this an IE problem or am I doing something wrong?
How can I make my application work using IE and Tomcat combination.
Thanks to you all for looking in
Jimmy