I cannot figure out how I can read a Cookie from the Request with an
ObjectApplication.
I have my own Session management, and there I will need the Cookies to
be read, so there Isn't any connection to my ObjectApplication derived
class, the other object do only
from session import Session
How can I get the cookies there?
Thanks,
Martin
If you want to read a cookie named 'SESSION_ID' you can do it like
this::
def index(self):
return HttpResponse(self.request.cookies['SESSION_ID'].value)
Regards,
Armin