Re: [Twisted-Python] Twisted developers: please donate your time!

2009-03-05 Thread Thomas Hervé
Le lundi 02 mars 2009 à 09:08 -0500, Itamar Shtull-Trauring a écrit : > Yes - thanks to you and all thee rest of the people who are > volunteering! Anyone else willing to step up? Sorry for being even more late. I won't spend as much time as I'd like, but I think 2 weeks of reviews/small branches

[Twisted-Python] Twisted Sprint at PyCon

2009-03-05 Thread glyph
There will be an extended Twisted sprint at PyCon this year. I hope that everyone on this list who is attending will be present :). Technically I'm the sprint leader, but I would very much appreciate help from anyone else who is in an organizing mood. Please sign up on the PyCon wiki here:

[Twisted-Python] sending large files from web2 http server

2009-03-05 Thread Markus Wanner
Hi, I'm trying to stream longish data via web2, but experience sudden stalls in data transfer, followed by a connection abort after a certain timeout. I can't completely reproduce the issue, yet, but figured that the size of the blocks I'm returning via the stream's read method affects the failure

Re: [Twisted-Python] sending large files from web2 http server

2009-03-05 Thread Jean-Paul Calderone
On Thu, 05 Mar 2009 16:20:27 +0100, Markus Wanner wrote: Hi, I'm trying to stream longish data via web2, but experience sudden stalls in data transfer, followed by a connection abort after a certain timeout. I can't completely reproduce the issue, yet, but figured that the size of the blocks I'

[Twisted-Python] _Win32Waker

2009-03-05 Thread Aron Bierbaum
I have been using a custom Qt4 reactor that derives from PosixReactorBase. As a result it creates a _Win32Waker to allow threads and signals to wake up the IO thread. It seems though that the current implementation only works about half of the time. The other half it exists with : File "...\Lib\

[Twisted-Python] Re:how to pass on the connection failed or connection lost error

2009-03-05 Thread khawar hasham
Hi, I tried to use this suggestion but I could not make it work. here is the test I am using in my application class def callSend(self, msg):   plugin.send(msg) Now in plugin class def send(self, msg):   print 'before call'   threads.blockingCallFromThread(reactor, remotesend, msg)

[Twisted-Python] How to invoke the remote method based on twisted in django web app?

2009-03-05 Thread Boern
hi,all: I developed a web app in diango and a remote service in twisted, and I want to invoke the twisted remote method in django web.example: the remote service code : class Echoer(pb.Root): def remote_echo(self, task): print 'echoing:', task return task if __name__ == '__m