Hello Phillip,
First thank you for your help.
I was trying to debug because I can't get my project starting in IIS.
I get the "python manage runserver" working.
I get the Info.py to work, but maybe I am missing a step.
I kept the default behavior with /app/django/ as in the example. I
also pointed the os.environ["DJANGO_SETTINGS_MODULE"] to my project
setting file.
The modification I have done in Isapi.py are :
import sys
sys.path.append(r'C:\Inetpub\')
sys.path.append(r'C:\Inetpub\mydjango')
from django.core.handlers.wsgi import WSGIHandler as DjangoHandler
os.environ["DJANGO_SETTINGS_MODULE"] = "mydjango.settings"
IIS keep sending me back a 404.
What is the correct way to access the application :
http://127.0.0.1 or
http://127.0.0.1/app/django/mydjango ?
I am pretty sure that the problem is my lack of understanding of wsgi.
I am missing the glue between django and pyisapie as both work
separately.
My app is a pretty simple app that return an index page for all urls.
Anyway if you have any hints let me know, I'll continue my
investigation.
PS : I'll be happy to contribute an up-to-date HOWTO when I succeed.
Where is the best location ?