Re: [Web-SIG] WSGI server handling absolute URI

2014-09-25 Thread Robert Collins
I think this makes sense to address - have replied to the ticket. but tl;dr: inconsistency in this space is likely to provoke bugs, so lets make things consistent. -Rob On 12 May 2014 00:45, mouad ben wrote: > Hello, > > My name is Mouad and this is my first time writing to this mailing list. >

Re: [Web-SIG] wsgi server...

2011-12-26 Thread Robert Brewer
Chris McDonough wrote: > Does anyone know of a pure-Python WSGI server that: > - Is distributed indepdently from a web framework or larger whole. > - Runs on UNIX and Windows. > - Runs on both Python 2 and Python 3. > - Has good test coverage. > - Is useful in production. I know you know, Chris, b

Re: [Web-SIG] WSGI server aimed at easy deployment and administration

2010-10-05 Thread Ian Bicking
The scope is somewhat different, but the goals similar: http://cloudsilverlining.org On Tue, Oct 5, 2010 at 3:52 PM, Randall wrote: > The rise of WSGI and the many server implementations is really great. > I've configured some combinations of webservers and WSGI servers that > are very fast and

Re: [Web-SIG] WSGI server/adapter and sys.exit()/SystemExit exception.

2007-03-07 Thread Robert Brewer
Graham Dumpleton wrote: > The question is, if a WSGI application calls sys.exit() or raises a > SystemExit exception explicitly, what action if any should a WSGI > server/adapter take in response. Should it allow the process to be > shutdown, or should it ignore it. > > ...to my mind any WSGI serv

Re: [Web-SIG] WSGI Server implementation which runs as a Windows service

2006-04-28 Thread Paul Moore
On 4/28/06, Guido van Rossum <[EMAIL PROTECTED]> wrote: > Support for Windows services is part of win32all, not core Python. Sorry, I don't think I made my request clear. I'm looking for WSGI server implementations, and in particular ones which can be made to work as Windows services. The service

Re: [Web-SIG] WSGI Server implementation which runs as a Windows service

2006-04-28 Thread Phillip J. Eby
FYI, Paul, I think Guido mistook your message as being in the "adding wsgiref to the stdlib" thread. :) As for your question, I think there's an IIS WSGI implementation. It's also possible that Twisted or Zope have WSGI servers suitable for use as a Windows service. At 02:00 PM 4/28/2006 -

Re: [Web-SIG] WSGI Server implementation which runs as a Windows service

2006-04-28 Thread Guido van Rossum
Support for Windows services is part of win32all, not core Python. --Guido On 4/28/06, Paul Moore <[EMAIL PROTECTED]> wrote: > I'm starting to play with WSGI, and I'd really like to find a > reasonable WSGI server implementation which will run as a Windows > service. I had a go with the CherryPy