Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 80771 invoked from network); 23 Feb 2006 20:31:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Feb 2006 20:31:31 -0000 Received: (qmail 52813 invoked by uid 500); 23 Feb 2006 20:31:24 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 52755 invoked by uid 500); 23 Feb 2006 20:31:23 -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 52738 invoked by uid 500); 23 Feb 2006 20:31:22 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 52732 invoked by uid 99); 23 Feb 2006 20:31:22 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Feb 2006 12:31:22 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 8B16CDD; Thu, 23 Feb 2006 21:31:01 +0100 (CET) From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Subject: DO NOT REPLY [Bug 38774] New: - try using keyStorePassword property if set Message-ID: X-Bugzilla-Reason: AssignedTo Date: Thu, 23 Feb 2006 21:31:01 +0100 (CET) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . 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=38774 Summary: try using keyStorePassword property if set Product: Tomcat 5 Version: 5.5.14 Platform: Other OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: Connector:HTTP AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: txtoth@yahoo.com Could connectors/util/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java use the javax.net.ssl.keyStorePassword property, if it is set, in getKeystorePassword after doing it's current checks but before using the default password? /* * Gets the SSL server's keystore password. */ protected String getKeystorePassword() { String keyPass = (String)attributes.get("keypass"); if (keyPass == null) { keyPass = defaultKeyPass; } String keystorePass = (String)attributes.get("keystorePass"); if (keystorePass == null) { keystorePass = System.getProperty("javax.net.ssl.keyStorePassword"); if (keystorePass == null ) { keystorePass = keyPass; } } return keystorePass; } -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org