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
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
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
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
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