[Twisted-Python] enable ssl in python application.

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() and at client side: server_proxy = xmlrpclib.Server("http://localhost:7081",allow_none=True) and what code should be there at the client side please suggest solution for that. I also want to do the same thing for java client for the same application(python server). please suggest solution for that. girish.

On 06:09 am, girish946@gmail.com wrote:
Have you read the SSL documentation? See http://twistedmatrix.com/documents/current/core/howto/ssl.html Jean-Paul

On 06:09 am, girish946@gmail.com wrote:
Have you read the SSL documentation? See http://twistedmatrix.com/documents/current/core/howto/ssl.html Jean-Paul
participants (2)
-
exarkun@twistedmatrix.com
-
Girish Joshi