The problem would seem to be that the IE6 users are not sending the session
ID through with every request, check by dumping out the seesion id. It
should stay the same for every page for the 5.5 users and differ for every
page for the 6 users (and even accross different requests of the same page).

If this is the case (it probably is from the symptoms) then it means that
the IE6 users have some persimission problems regarding cookies. In IE6 this
is all tied up with the new P3P stuff (yumie!).

I have run into the exact same problem myself with IE6,. but only after
after I "auto-updated" it from the M$ site. Only way back in the end was to
re-install the O.S. (XP in that case). Note this P3P stuff should not apply
to INTRANET sites, but after the "auto-up$#@%" it seems to treat them the
same as any site on the net. Another way around might be to deploy a P3P
policy file on your web server (enjoy! - search the net for tools).

Good Luck!

> -----Original Message-----
> From: David Cate [SMTP:[EMAIL PROTECTED]]
> Sent: 20 May 2002 07:23
> To:   [EMAIL PROTECTED]
> Subject:      Problem with session variable
>
> Normally I don't keep sensitive data inside of session variables but in
> this
> case it was just simple. I needed a way of trapping the user name and some
> statitistical information for the duration of the session. So I started
> placing variables in the session object like this:
>
> session.putValue("StTime",time);
>
> time being a local String that contains the starting time for the request.
> On the next page, I wanted to access the variable, so I perform:
>
> String time = (String)session.getValue("StTime");
>
> This works well in IE 5.5 but in IE6, the variable is ALWAYS null. I've
> tried several different machine with several settings including allowing
> allo cookies and setting the security to the lowest possible. I set up a
> machine next to me and in IE5.5 the page displays fine and the variable is
> set. in IE 6, no such luck.
>
> Anyone have any advice or run into this before?
>
> ==========================================================================
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com

--
**********************************************************************
The Truworths e-mail facility may not be used for the distribution of
chain letters or offensive email.  Truworths hereby distances itself
from and accepts no liability for the unauthorised use of its e-mail
facility or the sending of e-mail communications for other than
strictly business purposes.  Truworths furthermore disclaims liability
for any unauthorised instruction for which permission was not granted.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to