Re: Cookie help, anyone?

Alan Shields <[email protected]> Sat, 11 Mar 2006 15:01:58 -0600
Newsgroups gmane.lisp.web
Message-ID <[email protected]>
On Sat, Mar 11, 2006 at 03:14:14PM +0000, Jonathon McKitrick wrote:
> On Sat, Mar 11, 2006 at 12:08:33AM -0600, Alan Shields wrote:
> : James,
> : 
> : Most of what you're doing there has been implemented in the
> : session code. Of course, it was probably implemented AFTER
> : you did your work, but that's how it goes, eh? ;-p
> 
> I've done some more digging and found the problem is how to handle a bad login
> in handle-authorization-request.
> 
> Am I supposed to return nil for a denied login?  This gives me an 'unbound
> user' condition.  I also thought it would make sense to redirect back to the
> login page, but I'm having issues there as well.  Is there an example of this
> I can check out?

(signal 'http-unauthorized)

Or do a redirect.

Alan