Re: CGI vs WSGI

2007-07-04 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > Dear all, > > what is the difference? Middleware? > > I'm wondering because the only variables I ever needed were PATH_INFO, > REQUEST_METHOD, QUERY_STRING and maybe one more, all of which should > be available from CGI, too. > > Thanks. > WSGI is intented as a ga

Re: CGI vs WSGI

2007-07-04 Thread Josiah Carlson
[EMAIL PROTECTED] wrote: > I'm wondering because the only variables I ever needed were PATH_INFO, > REQUEST_METHOD, QUERY_STRING and maybe one more, all of which should > be available from CGI, too. CGI starts up a new process for every request, using stdin/stdout for passing information. I beli

Re: CGI vs WSGI

2007-07-04 Thread Michele Simionato
On Jul 4, 2:49 pm, [EMAIL PROTECTED] wrote: > Dear all, > > what is the difference? Middleware? Yes, and also the fact that you have a large choice of WSGI web frameworks to choose from. CGI looks so much 20th century ... ;) Michele Simionato -- http://mail.python.org/mailman/listinfo/python

CGI vs WSGI

2007-07-04 Thread tuom . larsen
Dear all, what is the difference? Middleware? I'm wondering because the only variables I ever needed were PATH_INFO, REQUEST_METHOD, QUERY_STRING and maybe one more, all of which should be available from CGI, too. Thanks. -- http://mail.python.org/mailman/listinfo/python-list