Re: Question about sessions in the DB

2008-04-21 Thread Peter Rowell
> It seems like I need to reference the session_key variable before I > can use it. Can anybody explain why? Well, I'll try. I spent sometime looking at django.contrib.session.backends.* The session is created in a 'lazy' fashion. In particular, db.py's load() method creates the record (and thu

Question about sessions in the DB

2008-04-21 Thread Dan
Hi All, I'm sure I'm missing something obvious here, but I'm relatively new to Python programming and to Django, so I'd appreciate any help that you all have to offer. I'm writing a function that takes in a username and password via a SOAP method (this all works well), authenticates the user, lo