• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Tomcat 5.5 + IE 6.0: Trouble with session cookies

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Sheriff
Posts: 67753
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jimmy Perakatt wrote: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.


Temporary cookies are held in memory and not written to file in IE, as I recall.

After disabling the cookies too other websites continued to create cookies.


Then, apparently, cookies are not disabled.

Is this an IE problem or am I doing something wrong?


IE is a known problem. I don't use it (or Windows) so I can't do much exploring at the moment. (My only Windows environment is a clunky Dell box at the office for IE testing.)

It should be a simple matter of unchecking the appropriate checkbox, but this is a Microsoft product we're talking about.

How can I make my application work using IE and Tomcat combination.


What's not working? Why does your application need cookies disabled? It's usually the other way around. Is this not simply an academic exercise?
 
A wop bop a lu bob a womp bam boom. Tutti frutti ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic