vote up 0 vote down star

I already have a very simple threading XML-RPC server in Python:

from SocketServer import ThreadingMixIn
class AsyncXMLRPCServer(ThreadingMixIn, SimpleXMLRPCServer):
    pass

server = AsyncXMLRPCServer(('localhost', 9999))
server.register_instance(some_object())
server.serve_forever()

Now I want to make it accessible exclusively over https. What do I do?

flag

75% accept rate

1 Answer

vote up 3 vote down check

The standard library doesn't support HTTPS servers. There is a Cookbook Recipe using an OpenSSL module. There is also a Twisted solution.

link|flag
I had seen that recipe, but thought things may have gotten into the standard library that were not there in 2006 when that recipe was written. Guess not :-( – scrible Oct 1 at 21:07
I vote for twisted. You can write nice custom servers with it too - see blog.gridspy.co.nz/2009/09/… – Tom Leys Oct 1 at 23:20
+1 for the twisted solution. – nosklo Oct 2 at 13:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.