[Zope] Problem with Cookieless Sessions on Mozilla and Netscape
Mark Bucciarelli
mark@easymailings.com
Thu, 25 Jul 2002 13:18:08 -0400
I can't get cookie-less session in Mozilla. They work fine in IE.
This is the python script I am using to run the test:
## Script (Python) "testSession"
##bind container=3Dcontainer
##bind context=3Dcontext
##bind namespace=3D
##bind subpath=3Dtraverse_subpath
##parameters=3D
##title=3D
##
session =3D context.REQUEST.SESSION
if session.has_key('mb'):
return 'second time'
else:
session['mb'] =3D 1
return 'first time'
I am running the 2.5.1 binary on Windows XP. Both Mozilla (Build ID:=20
2002053012) and Netscape 4.51 show 'first time', no matter how many times=
I=20
refresh.
Any ideas? Thanks.
Mark