On Sunday, Jul 27, 2003, at 09:04 US/Pacific, Benoit Hediard wrote: > When I got the problem, I looked at the cookie values : > - CFID&CFTOKEN have the same values under www.ourdomain and > subdomain.ourdomain.com pages, > - JSESSIONID have different values under www.ourdomain and > subdomain.ourdomain.com page. ... > I'm going to disable the J2EE session variables to see if it solves the > problem.
Ah, it sounds like your code is assuming CFID/CFTOKEN? If you have J2EE Session Variables enabled, I believe that you must not refer to CFID/CFTOKEN anywhere in your code. Once J2EE Session Variables are enabled, CFMX will use jsessionid *instead* of CFID/CFTOKEN. If your code accesses the CFID/CFTOKEN values, they'll be whatever persistent values were last stored on your client computer - and would not be valid. jsessionid, by contrast, is an in-memory cookie and does not persist to disk. Sean A Corfield -- http://www.corfield.org/blog/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

