On 2/9/07, Manoj  Govindan <[EMAIL PROTECTED]> wrote:
>
> Apologies for the flurry of messages.
> I just wanted to note that this worked:
>
> session =
> SessionWrapper( self.client.cookie.get( 'sessionid' ).value  )
>
> The above fragment returned me the session from the db that I was
> looking for.
> I am still confused. Russell, can I persuade you to explain what is
> going on here? :)

self.client.cookie (renamed to cookies in [4464]) is a SimpleCookie
object; this object wraps the ability to easily create HTTP headers
out of a cookie. You need to get the value attribute of the cookie to
return just the value of the session cookie, rather than the full
header information. That value, which is the session id stored as a
cookie, is passed to instantiate the SessionWrapper. SessionWrapper is
essentially a dictionary-like wrapper around Session.objects.get().
The session id instantiates the session wrapper, loading and decoding
the session information from the database, and you query the wrapper
for individual session data.

Does this help explain the process?

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to