Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 47586 invoked from network); 18 Oct 2006 18:09:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Oct 2006 18:09:26 -0000 Received: (qmail 65275 invoked by uid 500); 18 Oct 2006 18:09:21 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 65228 invoked by uid 500); 18 Oct 2006 18:09:21 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 65217 invoked by uid 99); 18 Oct 2006 18:09:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 11:09:21 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [206.123.111.90] (HELO mail.loukasmgmt.com) (206.123.111.90) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 11:09:18 -0700 Received: (qmail 2275 invoked by uid 510); 18 Oct 2006 13:15:54 -0500 Received: from unknown (HELO ?192.168.1.2?) (smtp@loukasmgmt.com@71.252.250.117) by mail.loukasmgmt.com with SMTP; 18 Oct 2006 13:15:54 -0500 Message-ID: <45366D91.3090804@hanik.com> Date: Wed, 18 Oct 2006 13:08:17 -0500 From: Filip Hanik - Dev Lists User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Tomcat Developers List Subject: Re: svn commit: r465303 - in /tomcat/tc6.0.x/trunk: java/org/apache/coyote/http11/ java/org/apache/tomcat/util/net/ webapps/docs/ webapps/docs/config/ References: <20061018171046.B2D941A981A@eris.apache.org> <453666D9.6000401@apache.org> <45366D26.2090105@hanik.com> In-Reply-To: <45366D26.2090105@hanik.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Filip Hanik - Dev Lists wrote: > > > Mladen Turk wrote: >> fhanik@apache.org wrote: >>> >>> - ssl = endpoint.getSecure(); >>> + ssl = "on".equalsIgnoreCase(endpoint.getSSLEngine()); >>> >> >> Like Remy said, anything except "Off" is acceptable. >> It can be either "On" or "EngineName" (eg, SSLEngine="nuron") > that's for APR, because of > if (!"off".equalsIgnoreCase(SSLEngine)) { > // Initialize SSL > // FIXME: one per VM call ? > if ("on".equalsIgnoreCase(SSLEngine)) { > SSL.initialize(null); > } else { > SSL.initialize(SSLEngine); > } > > In the HTTP connector, there is no other engine to initialize, hence > the only values are on/off \ btw, if the value for SSLEngine can only be used/initialized once per VM, why not put the actual engine value in the APR listener, and not in the connector Filip --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org