Hi Tim,
You probably have this code in your Isapi.py file:
if not Handler:
try:
Handlers[Key] = imp.load_source(Key,
Env.SCRIPT_TRANSLATED).Request
except Exception, Val:
# trigger a passthrough to the next ISAPI handler -
# ONLY WORKS FOR WILDCARD APPLICATION MAPPINGS
return True
# or just fail, preferable for an application map
#raise ImportError, "[Loading '%s'] %s" %
(Env.SCRIPT_TRANSLATED, str(Val))
If you are trying to just execute the script corresponding to
SCRIPT_TRANSLATED and it's not found, the default behavior is to pass
control to the next handler... but this only works when you have
PyISAPIe configured as a wildcard handler and not when it's set to
handle *.py files (or any specific extension). You can remove the
entire except statement to see what error is produced and go from
there.
- Phillip