I thought it was something like that, but when I do: a_cred=request.session['user_cred'] print type(a_cred)
I get this result: <type 'org.globus.gsi.GlobusCredential'> not unicode On Fri, Oct 7, 2011 at 1:00 PM, Shawn Milochik <[email protected]> wrote: > Session variables are strings. > > If you want an object you're going to have to serialize it (probably using > pickle) and deserialize it when you retrieve it before you can use it. > > As you're doing it now, you're probably just storing the unicode > representation in the session, not the actual object. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > 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. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

