Re: [Zope] unbuffered response.write through Apache 2.0 reverse proxy?

2006-02-21 Thread Chris Withers
Christoph Berendes wrote: so I've padded this with blanks to hit the buffer size. Klugey,but works. Any reason why you don't just lower the buffer size? Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk ___

Re: [Zope] unbuffered response.write through Apache 2.0 reverse proxy?

2006-02-20 Thread Christoph Berendes
Chris McDonough wrote: Apache does its own buffering IIRC. Look for ProxyReceiveBufferSize/ ProxyIOBufferSize. Thanks. AFAICT (http://httpd.apache.org/docs/2.0/mod/mod_proxy.html#proxyiobuffersize), though, the buffer size settings have to be fairly large (512 or more, or 0 for the "syste

Re: [Zope] unbuffered response.write through Apache 2.0 reverse proxy?

2006-02-18 Thread Chris McDonough
Apache does its own buffering IIRC. Look for ProxyReceiveBufferSize/ ProxyIOBufferSize. On Feb 18, 2006, at 3:59 AM, Christoph Berendes wrote: To prevent browser timeout during a long running process, I've got the following code to work nicely,when the browser accesses Zope directly (e.g.

[Zope] unbuffered response.write through Apache 2.0 reverse proxy?

2006-02-18 Thread Christoph Berendes
To prevent browser timeout during a long running process, I've got the following code to work nicely,when the browser accesses Zope directly (e.g. http://myzope.net:8080/folder/client001/) context.REQUEST.response.write("progressing...") #do some stuff context.REQUEST.response.write("further...