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:


  } else if( actionCode==ActionCode.ACTION_CLOSE ) {
    org.apache.coyote.Response res=(org.apache.coyote.Response)param;
    if (!res.isCommitted())
      this.action(ActionCode.ACTION_COMMIT, param);

 But the code is (presumably, I haven't checked) working fine
for non-Apache 1.3 setups, and I hate to make a change without
understanding where the real root of the problem is. Hints
appreciated.

-- 
Christopher St. John [EMAIL PROTECTED]
DistribuTopia http://www.distributopia.com

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to