Re: [Web-SIG] WSGI in standard library

2006-02-12 Thread William Dode
On 12-02-2006, Jos Yule wrote: Alan Kennedy wrote: So, I still think that only basic servers educational/playpen servers should go in the standard library, with an indication that the user should pick an openly server from outside the distro if they require to do serious server work.

[Web-SIG] middleware in stantard library ?

2006-02-17 Thread William Dode
Hi, In the same goal as wsgiserver, what do you think to add two middleware to can really make quickly a meta-framework and play immediatly with it without any external dependency. I think about cookies and session. bye -- William Dodé - http://flibuste.net

Re: [Web-SIG] WebOb

2007-10-22 Thread William Dode
Hi, Since the announce of ian about webob, i did two things with it. First i include it in my personal web framework, it was very easy, i had just to remove all my crappy equivalent functions. It make my framework a little bit more clean and i can inherit new features. Second, most important,

Re: [Web-SIG] multi-threaded or multi-process wsgi apps

2007-11-26 Thread William Dode
On 26-11-2007, Chris Withers wrote: Hey All, I hope I have the right list, if not please point me in the right direction... Likewise, if there are good docs that cover all of this, please send me their way ;-) Right, I'm curious as to how wsgi applications end up being multi-threaded

Re: [Web-SIG] Fwd: wsgiref.simple_server slow on slow network

2008-07-23 Thread William Dode
On 23-07-2008, Tibor Arpas wrote: Reverse DNS lookup is THE reason. Thank you very much Irmen. I put my remote computer into windows/system32/drivers/etc/hosts and the problem disapeared. The DNS name is indeed in the log which is written to the console. Thanks again. Is there a way to

Re: [Web-SIG] how to test hunging socket ?

2009-01-31 Thread William Dode
On 30-01-2009, Ian Bicking wrote: --===1780478717== Content-Type: multipart/alternative; boundary=00163646d5c46749ac0461ba70c5 --00163646d5c46749ac0461ba70c5 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On Fri, Jan 30, 2009 at 3:48 PM, William Dode w

Re: [Web-SIG] how to test hunging socket ?

2009-01-31 Thread William Dode
I think i finaly could catch the error... With wsgiref simple_server (and apache mod_proxy), i run an app without problem most of the time. I mean 10 hits/day. Some times, not every day, the app freeze and i need to restart it manualy. If i don't the app stay like that and never answer

Re: [Web-SIG] how to test hunging socket ?

2009-01-31 Thread William Dode
On 31-01-2009, William Dode wrote: I think i finaly could catch the error... With wsgiref simple_server (and apache mod_proxy), i run an app without problem most of the time. I mean 10 hits/day. Some times, not every day, the app freeze and i need to restart it manualy. If i don't

Re: [Web-SIG] Announcing bobo

2009-06-17 Thread William Dode
On 16-06-2009, Etienne Robillard wrote: Pfft, I bet this thread would have never happened without my initial intervention. Likewise, I think you're just using this thread for your own interests, disregarding my own arguments on why web frameworks are so hard to cope with. If you want to

Re: [Web-SIG] WSGI for Python 3

2010-07-17 Thread William Dode
On 17-07-2010, chris.d...@gmail.com wrote: On Fri, 16 Jul 2010, P.J. Eby wrote: At 02:28 PM 7/16/2010 -0500, Ian Bicking wrote: There should be one, and preferably *only* one, obvious way to do it. And given that HTTP is inherently a bunch of bytes, bytes is the one obvious way. I think