I have a web application (webservices) that combine Bottle web framework and Jython … managed to run it on several web servers as supported on Bottle Documentation and all work fine. (such as Paste, Cherrypy, ..etc)
but, when i try to enable SSL on the web server .. all fails ! and seems that cause they use pyOpenSSL wrapper for that which is not compatible with Jython.
Is there a pyOpenSSL wrapper for Jython? or
Is there any available web server that can be combined with Jython and Bottle frame work and can support SSL?
After a quick look I didn’t see a pyOpenSSL wrapper for Jython. You could proxy your app thru a webserver such as apache or nginx and have that manage your SSL. I have nginx handle my SSL for my cherrypy app.
http://wiki.nginx.org/HttpSslModule
hope this helps.
Andrew