Tim Whittington wrote:
Binary builds of 1.2.26 for various platforms are available now from http://sourceforge.net/projects/timsjk/ These include builds of a patched IIS 5/6 ISAPI Redirector that support HTTP 1.1 chunked encoding (and thus keep-alives on dynamic content).
Hi Tim, Can you create a patch against trunk, but with one slight ;) change to your code, and that is to #ifdef all the chunked code (at least relevant) out by some preproc directive like JK_IIS_CHUNKED so: #ifdef JK_IIS_CHUNKED // any change made to the part of the code. #endif You don't need to rule out all the stuff, but only one that are affecting current defaults. The other solution is to have some global flag (configurable) that will allow with a single directive to switch out all the chunked logic with defaults to be as is. Can you do that? I'd prefer the second option if possible, unless something needs to be changed before actually reading the configuration. Regards, Mladen --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
