Problem with Session Variables between pages
OK, I have three CF9 boxes. One is at a hosting site, one is my developer box, and one is at a client site. At the client site, when going from page to page, the session variables are lost with IE9 from my laptop. IE9 has no problem with session variables on the developer box nor at the hosted site. Chrome has no problem anywhere. So the session variables are lost at the client site with IE 9 only (IE 7 fails too).
Here is the code:
File test.cfm
<html>
<head>
<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript">
<link href="/musd_web/css/screen.css" REL="StyleSheet" media="screen" type="text/css">
</head>
<body>
<cfoutput>
<cflock timeout = "60" scope = "SESSION" type = "Exclusive">
<cfset session.stuff ="stuff is here!">
</cflock>
<cfset x="2">
<button type="button" value="GO"
onClick="window.location='/test/junk.cfm'">Go </button>  
<cfdump var="#session#" title="session">
</cfoutput>
</body>
</html>
File junk.cfm
<html>
<head>
<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript">
</head>
<body>
<cfoutput>
<cfdump var="#session#" title="session">
Stuff is #session.stuff#
</cfoutput>
<form name="myform">
OK
</form>
</body>
</html>
And the application.cfc
<cfcomponent>
<cfset this.name="TEST">
<cfset this.sessionmanagement="TRUE">
<cfset this.clientmanagement="yes">
<cfset this.clientstorage="cookie">
<cfset this.sessiontimeout="#createTimeSpan(0,8,1,0)#">
<cfset this.loginstorage="session">
</cfcomponent>
--------------------------
If you bring up test.cfm you will sess the session variables set. Press the button to go to junk.cfm and you will see that the session variable stuff is lost. I have tried several flavors of the application.cfc and even tried it as a cfm. No change. Have tried J2ee sessions and not, no change. Anyone have any ideas here?
