Le 26 nov. 2010 à 09:36, Yuri a écrit : > Hi! > > how can I handle in an app a user (session), being it anonymous and > having the browser the cookie disabled? I mean, I can use sessions or is > there PAS plugin that can handle it as a "user"? > > Otherwise, can sessions works.
I'm afraid no because Zope 2 standard sessions use a cookie (named _ZopeId IIRC) to identify anonymous users. > > It should work only over an object (and per object), not the entire site. > > Any idea? :) Without cookies, you could pass along a query string in the URLs that identify the user. Or use a special URL traversal key like does Apple WebObjects (this makes ugly URLs but it works)). Not easy. You'd better tell the users to let their browsers accept cookies. > _______________________________________________ > Product-Developers mailing list > [email protected] > http://lists.plone.org/mailman/listinfo/product-developers _______________________________________________ Product-Developers mailing list [email protected] http://lists.plone.org/mailman/listinfo/product-developers
