[issue13403] Option for XMLPRC Server to support HTTPS

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: This issue hasn't seen any serious activity in five years. The patch is outdated, too. Is anybody interested to take it? -- assignee: christian.heimes -> components: -SSL ___ Python tracker

[issue13403] Option for XMLPRC Server to support HTTPS

2016-09-15 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: -petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue13403] Option for XMLPRC Server to support HTTPS

2016-09-15 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: -> christian.heimes components: +SSL ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue13403] Option for XMLPRC Server to support HTTPS

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: The patch is out of date. The XMLRPC HTTPS server should accept a ssl context instead of key and cert file. This allows better customization and SSL session resumption. -- nosy: +christian.heimes versions: +Python 3.7 -Python 3.4 ___

[issue13403] Option for XMLPRC Server to support HTTPS

2013-03-08 Thread Florian Weimer
Changes by Florian Weimer : -- nosy: +fweimer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue13403] Option for XMLPRC Server to support HTTPS

2012-10-28 Thread Jeff McNeil
Jeff McNeil added the comment: Attached... worked in the way I've done it in the past and updated documents. -- keywords: +patch Added file: http://bugs.python.org/file27773/ssl_xmlrpc_server.patch ___ Python tracker

[issue13403] Option for XMLPRC Server to support HTTPS

2012-10-28 Thread Jeff McNeil
Jeff McNeil added the comment: I've hacked this support in myself a few times with a simple socket wrap call in SimpleXMLRPCServer's __init__. I'd be happy to put a quick patch together if that's a viable approach. Is there any desire to support client authentication or advanced features like

[issue13403] Option for XMLPRC Server to support HTTPS

2012-09-25 Thread Antoine Pitrou
Antoine Pitrou added the comment: Note there's already a couple of HTTPS servers in Lib/test/ssl_servers.py. I'm not sure there's anything special to do for XMLRPC except to take the core instantiation code and put it in xmlrpclib. -- nosy: +flox, loewis, pitrou stage: -> needs patch v

[issue13403] Option for XMLPRC Server to support HTTPS

2011-11-19 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue13403] Option for XMLPRC Server to support HTTPS

2011-11-14 Thread Raymond Hettinger
New submission from Raymond Hettinger : The xmlrpc.client module supports secure transport using https; however, the xmlrpc.server does not have an https option. Adding this support isn't difficult. Here's an example of how to it could be implemented: http://code.activestate.com/recipes/496