Re: [Twisted-Python] Tunneling using conch (with application.service)

2009-08-12 Thread Sean Hollingsworth
Your advice helped considerably. Thank you. Sean M Hollingsworth On Sat, Aug 8, 2009 at 4:49 PM, wrote: > On 6 Aug, 03:47 pm, smhollingswo...@gmail.com wrote: > >I 19ve got an app written that runs as a service using > >twisted.application.service that I need to tunnel through SSH. Right > >no

[Twisted-Python] Tunneling using conch (with application.service)

2009-08-06 Thread Sean Hollingsworth
I’ve got an app written that runs as a service using twisted.application.service that I need to tunnel through SSH. Right now, I use a script that makes use of Paramiko (and runs separate from my app) to set up a tunnel. That more or less works, but I’ve had some problems with the tunnel just going

[Twisted-Python] Perspective broker and SSL

2009-07-09 Thread Sean Hollingsworth
I'm trying to add SSL support to an app that makes use of Perspective Broker. In my server I have the following: ccf = ssl.ContextFactory() ccf.method = SSL.TLSv1_METHOD reactor.listenSSL(PORT, pb.PBServerFactory(RLFactory()), ccf) and in my client I have this: ccf = ssl.ClientContextFactory() c

Re: [Twisted-Python] Perspective broker remote calls to multiple servers seem to run sequentially

2009-07-03 Thread Sean Hollingsworth
ng to figure out why this was running the way it was. A million thanks. Sean On Fri, Jul 3, 2009 at 7:52 AM, Johann Borck wrote: > Sean Hollingsworth wrote: > > Let me start off by warning everyone that I am extremely new to > > twisted (I've been using it maybe a week) an

[Twisted-Python] Perspective broker remote calls to multiple servers seem to run sequentially

2009-07-02 Thread Sean Hollingsworth
Let me start off by warning everyone that I am extremely new to twisted (I've been using it maybe a week) and it's highly likely some things don't work the way I think they should. Or, I'm just using them incorrectly. Some background on what I'm trying to accomplish: I have a client/server system