Can anyone help me get a Flask application running on IIS 6? I have tried to use isapi-wsgi, but when I visit the Virtual Directory address I get a page that says "The specified module could not be found." Are there other options for this?

Below is the Python script I wrote for isapi-wsgi. The Virtual Directory was made and everything looked ok in IIS Manager, but the site did not work.

from wof import app
import os

app.secret_key=os.urandom(24)

import isapi_wsgi
def __ExtensionFactory__():
    return isapi_wsgi.ISAPISimpleHandler(app)

if __name__ == '__main__':
    from isapi.install import *
    params = ISAPIParameters()
    sm = [ScriptMapParams(Extension="*", Flags=0)]
    vd = VirtualDirParameters(Name="WOFPy_Sondes", Description="ISAPI-WSGI for WOFPY Sondes test", ScriptMaps=sm, ScriptMapUpdate="replace")
    params.VirtualDirs = [vd]
    HandleCommandLine(params)
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Check out Django's page on the subject. It helped me set up a working Django project, but it shouldn't be that different for a Flask app.

http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer

link|improve this answer
feedback

I never use IIS, but IIS supports CGI gateway, therefore you should be able to adapt CGI with WSGI.

IIS <--> CGI <--> WSGI

To run a WSGI as a CGI script, you can use the CGIHandler in Python standard library.

link|improve this answer
CGI is not an acceptable solution unless it's a very low-traffic thing (e.g. just used by yourself). It starts a process everytime a page is requested. – ThiefMaster Mar 11 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

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