DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29569>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29569 POST over HTTPS with verify client certificate Summary: POST over HTTPS with verify client certificate Product: Apache httpd-2.0 Version: 2.0-HEAD Platform: All URL: http://ers.msk.ru OS/Version: All Status: NEW Severity: Normal Priority: Other Component: mod_ssl AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] I'm using POST over HTTPS with verify client certificate and found possible bug. According to /CHANES: >Changes with Apache 2.0.37 > > *) allow POST method over SSL when per-directory client cert > authentication is used with 'SSLOptions +OptRenegotiate' enabled > and a client cert was found in the ssl session cache. But server still write to log: >[error] SSL Re-negotiation in conjunction with POST method not supported! \nhint: try SSLOptions +OptRenegotiate Then I apply patch below feature will be worked rigth. ### BEGIN DIFF ### --- modules/ssl/ssl_engine_kernel.c Tue Jun 15 13:20:46 2004 +++ modules/ssl/ssl_engine_kernel.c.orig Tue Jun 15 13:38:17 2004 @@ -549,7 +549,7 @@ * * !! BUT ALL THIS IS STILL NOT RE-IMPLEMENTED FOR APACHE 2.0 !! */ - if (!renegotiate && !renegotiate_quick && (r->method_number == M_POST)) { + if (renegotiate && !renegotiate_quick && (r->method_number == M_POST)) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, "SSL Re-negotiation in conjunction " "with POST method not supported!\n" ### END DIFF ### --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
