[Twisted-Python] TCP: can't redo connectTCP() from same local port if server did not explicitly close connection ??

2009-01-15 Thread Alessio Pace
Hi, I would like to have a client connect via TCP to a server (say, server "A"), then the client close the connection and connect via TCP to another server (say, server "B") using the same TCP port that was bound locally while connecting to "A". And then this done over and over again switching fro

Re: [Twisted-Python] TCP: can't redo connectTCP() from same local port if server did not explicitly close connection ??

2009-01-15 Thread Jean-Paul Calderone
On Thu, 15 Jan 2009 11:44:44 +0100, Alessio Pace wrote: Hi, I would like to have a client connect via TCP to a server (say, server "A"), then the client close the connection and connect via TCP to another server (say, server "B") using the same TCP port that was bound locally while connecting t

Re: [Twisted-Python] TCP: can't redo connectTCP() from same local port if server did not explicitly close connection ??

2009-01-15 Thread Alessio Pace
Hi, On Thu, Jan 15, 2009 at 1:58 PM, Jean-Paul Calderone wrote: > On Thu, 15 Jan 2009 11:44:44 +0100, Alessio Pace > wrote: > >> Hi, >> >> I would like to have a client connect via TCP to a server (say, server >> "A"), >> then the client close the connection and connect via TCP to another server

[Twisted-Python] SIP support

2009-01-15 Thread Phil Mayers
What's the current status of SIP support in twisted? I know the support in trunk is older, and there's some newer stuff (Sine) on divmod.org (see below) but that's seems heavily dependent on mantissa, and crucially doesn't support TCP. Also - I'm having problems resolving divmod.org from here

[Twisted-Python] Re: adbapi and ConnectionLost.

2009-01-15 Thread Don Dwiggins
Sébastien HEITZMANN wrote: Hi, for a couple of week i search how i should handle mysql disconnection on my twisted web service. When I restart the database without restarting my service i got some ConnectionLost fired. I have used the cp_reconnect on the connection pool and it seem to work ( the

Re: [Twisted-Python] SIP support

2009-01-15 Thread Allen Short
On Thu, Jan 15, 2009 at 02:07:41PM +, Phil Mayers wrote: > What's the current status of SIP support in twisted? > > I know the support in trunk is older, and there's some newer stuff > (Sine) on divmod.org (see below) but that's seems heavily dependent on > mantissa, and crucially doesn't s

Re: [Twisted-Python] django with twisted 8.2.x: 2009

2009-01-15 Thread V S P
Hi Alex, This is just a plan sofar (not implemented yet) But I plan use twisted for Reports that join file data and database data. I also plan to use Twisted to 'serv' those reports up to the requestor. Therefore The wisted web server will be used to serve up the reports, and twisted Processes

[Twisted-Python] reactor.stop() and thread and wxPython problem

2009-01-15 Thread Gabriel Rossetti
Hello everyone, I have written some code using Twisted that spawns threads and another using wxPython integration. For some reason when reactor.stop() is called they don't always exit. I suspect that the reactor is waiting on the threads to finish, which they apparently don't do, and as for th