Re: Apache 1.3/jk2, redirects, redux

2002-06-21 Thread Christopher K. St. John
Christopher K. St. John wrote: jk/java/org/apache/jk/JkCoyoteHandler ACTION_CLOSE is getting called with no call to ACTION_COMMIT Quick fix is to have JkCoyoteHandler CLOSE commit if the response hasn't already been committed: if( !res.isCommitted() )

Re: Apache 1.3/jk2, redirects, redux

2002-06-21 Thread costinm
On Fri, 21 Jun 2002, Christopher K. St. John wrote: if( !res.isCommitted() ) this.action( ActionCode.ACTION_COMMIT, param ); Looks like this may really be how it's supposed to work, so I'd like to check this change in. However, as other people are

Apache 1.3/jk2, redirects, redux

2002-06-20 Thread Christopher K. St. John
jk/java/org/apache/jk/JkCoyoteHandler ACTION_CLOSE is getting called with no call to ACTION_COMMIT when: - jk2 is being using with Apache 1.3 and - there's a redirect (like with a welcome page) Quick fix is to have JkCoyoteHandler CLOSE commit if the response hasn't already been committed: