Re: authenticated sessions that don't depend on http, cookies, etc.

2008-04-29 Thread Doug B
> I'd like to use something like the Django sessions middleware, > but I don't want to involve cookies or HTTP request headers > at all.  Does anyone have a good way to do this? Why not? You've got to use some kind of transport to get the XML there anyway, and django is built with HTTP in mind.

authenticated sessions that don't depend on http, cookies, etc.

2008-04-29 Thread Andrew D. Ball
Afternoon. I'm working on a Django application that uses XML-RPC to expose all of its logic. I require that for every method expect the user creation/registration method the requestor be authenticated. I'd like to use something like the Django sessions middleware, but I don't want to involve co