[Zope] FSSession used in Python???
Pavlos Christoforou
pavlos@gaaros.com
Mon, 10 Jul 2000 16:50:24 -0400 (EDT)
On Fri, 7 Jul 2000, Dan Narkiewicz wrote:
> inside my own python written Zope product... Any help would be.. well...
> helpful..
I am not sure if it is a good idea to use a Product in the manner you
describe but in any case:
> --- a class definition ---
> def FStest(self):
> """fssession test"""
> self.a = FSSession() <---- error appears here
FSSession needs to be initialized with a cookie name, (whatever one wants
to call the cookie that will store the session id).
self.a=FSSession('Danssession')
Still it might not work if FSSession cannot access REQUEST etc. Let me
know.
Pavlos