All,

It's the keystore file.  Tomcat was unable to locate it.  On 5.X, it
seems that Tomcat's default path is C:\.keystore while my JRE's default
path is my user directory.  I switched back to Tomcat 5.X and the log
finally indicated the problem.  I used the keystoreFile attribute and it
found it.

I'm retrying now with 6.X on to see if it was the same issue.  Not sure
why it didn't show up in the log with 6.X.



 
Bijan Vakili
Senior Software Developer
 
Cryptologic Inc. 
55 St-Clair W, 3rd floor, Toronto, Ontario, M4V 2Y7
Phone 416.545-1455 Ext 5892
E-Mail: [EMAIL PROTECTED]
SKYPE: bijanvakili 

This message, including any attachments, is confidential and/or
privileged and contains information intended only for the person(s)
named above. Any other distribution, copying or disclosure is strictly
prohibited. If you are not the intended recipient or have received this
message in error, please notify us immediately by reply email and
permanently delete the original transmission from all of your systems
and hard drives, including any attachments, without making a copy.

-----Original Message-----
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 15, 2006 11:23 AM
To: Tomcat Users List
Subject: RE: Help: Enabling SSL

> From: Bijan Vakili [mailto:[EMAIL PROTECTED] 
> Subject: RE: Help: Enabling SSL
> 
> Actually, I'm encountering this same problem on Solaris 10 as well.  I
> actually am indifferent to using JSSE or APR...I just want 
> SSL enabled!

For 6.0, you need the attribute SSLEnabled="true" in your <Conntector>
element:

    <Connector port="56443" protocol="HTTP/1.1"
connectionTimeout="20000"
               maxThreads="25" maxSpareThreads="10" minSpareThreads="5"
               SSLEnabled="true" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"
               keystoreFile="conf/security/test.keystore"
keystorePass="**" />

If that doesn't help, post your <Connector> config here so we can look
at it.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
______________________________________________________________________

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to