Re: [Twisted-Python] session management

2010-03-30 Thread Mark
I figured as much that twisted supported the notion of sessions. Are there any examples that show me how to access them and add/remove/update attributes in the session? On Tue, Mar 30, 2010 at 6:42 PM, Itamar Turner-Trauring wrote: >> Greetings, >> >> I am new to this list and twisted.  I have

Re: [Twisted-Python] Anyone working on a Twisted txRiak?

2010-03-30 Thread Glyph Lefkowitz
On Mar 30, 2010, at 3:22 PM, Ray Cote wrote: > Curious to know if anyone is working on an interface between Twisted and Riak. > > > Before we started one, thought I'd reach out first to ensure we're not > duplicating efforts. > --Ray I can't say for sure, but give

Re: [Twisted-Python] session management

2010-03-30 Thread Itamar Turner-Trauring
> Greetings, > > I am new to this list and twisted. I have worked with some systems > similar to twisted, notably Apache MINA. I am trying to find out how > to set up my server to support sessions for multiple clients. Right > now I am simply developing a telnet-like application to learn twisted

[Twisted-Python] session management

2010-03-30 Thread Mark
Greetings, I am new to this list and twisted. I have worked with some systems similar to twisted, notably Apache MINA. I am trying to find out how to set up my server to support sessions for multiple clients. Right now I am simply developing a telnet-like application to learn twisted but cannot

[Twisted-Python] Anyone working on a Twisted txRiak?

2010-03-30 Thread Ray Cote
Curious to know if anyone is working on an interface between Twisted and Riak. Before we started one, thought I'd reach out first to ensure we're not duplicating efforts. --Ray ___ Twisted-Python mailing list Twisted-Py

Re: [Twisted-Python] [Twisted] #4378: Error handling in NetstringReceiver broken

2010-03-30 Thread Albert Brandl
On Tue, Mar 30, 2010 at 12:27:54PM -, Twisted wrote: > 1. I'm pretty sure this patch, in its current form, will break in the > (still supported) Python 2.4, since it uses the 2.5 generator feature > where you pass in data. Yep - I'll fix this. > 2. Why not initialize the parser in the Pro

Re: [Twisted-Python] twisted vs wsgi

2010-03-30 Thread Itamar Turner-Trauring
On Tue, 2010-03-30 at 08:46 +0100, Chris Withers wrote: > I struggled to find good narrative docs on using Twisted as a WSGI > server. Where should I have been looking and have I dropped any clangers > in the above? The "Web in 60 seconds" howto has this: http://twistedmatrix.com/documents/curre

[Twisted-Python] twisted vs wsgi

2010-03-30 Thread Chris Withers
Hi All, I've managed to cobble this together as a way of starting a BFG app under Twisted's wsgi server: """ from twisted.web.wsgi import WSGIResource from twisted.web.server import Site from twisted.internet import reactor from webob import Response from repoze.bfg.configuration import Configu