isapi-wsgi

How do you deploy django applications for windows?

I'm working on a web application using isapi_wsgi and django-pyodbc. I'd like to have a way to install all dependencies and push the files out to the webserver. Unfortunately, some of these are easier said than done. In particular, handling dependencies is a pain as some of them won't install correctly even under setuptools (pywin32 i...

CherryPy3 and IIS 6.0

I have a small Python web application using the Cherrypy framework. I am by no means an expert in web servers. I got Cherrypy working with Apache using mod_python on our Ubuntu server. This time, however, I have to use Windows 2003 and IIS 6.0 to host my site. The site runs perfectly as a stand alone server - I am just so lost when it...

serving soaplib using isapi_wsgi

Hi, i'm relatively new on python and i'd like to setup a webservice on an IIS server using soaplib and isapi_wsgi. I've written the soaplib web services that works fine as a wsgi server: from wsgiref.simple_server import make_server server = make_server('10.0.0.222', 8080, WebServices()) server.serve_forever() how can i change my soa...