On Wed, Jan 23, 2002 at 10:03:56AM -0800, David Ascher wrote: > The apps work (both the demo and my own creation), but the HTML content > gets truncated in IE6 before the end of the expected returned text. The > problem does not occur in NS 4.77. If this is a IE6 bug it would be nice to know why Quixote triggers it. First, make sure you have page compression turned off (it's off by default so that's probably not the problem). Next, it's probably useful to see what exactly is being sent as the response. You could tweak Quixote to save a copy of the response somewhere. Attached is a small patch that should work. Perhaps there is something wrong with the content-length header. If you like you can send me the contents of the saved response and I can take a look at it. Neil diff -u -r1.104 publish.py --- publish.py 27 Nov 2001 20:51:33 -0000 1.104 +++ publish.py 23 Jan 2002 18:25:15 -0000 @@ -661,6 +661,8 @@ if output: request.response.set_body(output) request.response.write(stdout) + request.response.write(open("c:/temp/response.txt", "wb")) + def publish_cgi (self): """publish_cgi() -> None