Re: [pylons-discuss] Stupid noob question on Pyramid running under IIS.

2014-10-14 Thread joe
Thanks Michael! I really appreciate it. I was able to get the sample working with your help. -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To unsubscribe from this group and stop receiving emails from it, send an email to

[pylons-discuss] Stupid noob question on Pyramid running under IIS.

2014-10-13 Thread joe
This is embarassing but I've been unable to figure out what's going on. I'm trying to write a WSGI application that will be running under IIS. As I understand it, WSGI is a pretty simple API. I have a sample application running; def application(environ, start_response): WSGI

Re: [pylons-discuss] Stupid noob question on Pyramid running under IIS.

2014-10-13 Thread Michael Merickel
The app in your second example has the same signature as application in your first example. They are both objects that conform to the WSGI protocol. So if your runner for IIS is looking for an application module-level variable to be defined in that module then hopefully you have your answer that