Re: [Twisted-Python] enable ssl in python application.

2013-07-17 Thread exarkun
On 06:09 am, girish...@gmail.com wrote: I want to enable ssl on port 7081 for my python application I'm using this port for xmlrpc. I have twisted library installed but I'm not getting exactly how to use it's functions to enable ssl. here is my code. Have you read the SSL documentation? See h

[Twisted-Python] enable ssl in python application.

2013-07-16 Thread Girish Joshi
I want to enable ssl on port 7081 for my python application I'm using this port for xmlrpc. I have twisted library installed but I'm not getting exactly how to use it's functions to enable ssl. here is my code. class server: reactor.listenTCP(7081, server.Site(myapp)) reactor.run