Hi everyone,

I have a problem with Tomcat and SSL configuration. First of all I must
say that i searched the web and the archieves but none could help my
problem, so the list is my last hope, i hope you could help me.

Here is what I've done. First of all I've got my certificate, my tomcat is
running fine without SSL support. Then I've imported my certificates as
follows

keytool -import -trustcacerts -alias root -file GTE.crt -keystore
/path/to/my/keystore
keytool -import -trustcacerts -file mydomain.crt -keystore
/path/to/my/keystore
keytool -import -trustcacerts -alias comodo -file Comodo.crt -keystore
/path/to/my/keystore

Then I edited the server.xml file, and it looks like this;

    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8443" minProcessors="5" maxProcessors="75"
               enableLookups="true"
               acceptCount="100" debug="0" scheme="https" secure="true"
               useURIValidationHack="false" disableUploadTimeout="true">
      <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
                keystoreFile="/path/to/my/keystore"  keystorePass="mypassword"
               clientAuth="false" protocol="TLS" />
    </Connector>

Then I've started my tomcat. I can still reach the non-SSL site but when i
try to view the SSL page by writing https://localhost:8443, netscape says that

"Netscape 7.0 and localhost cannot communicate securely because they have
no common encryption algorithms"

How can I solve this problem? As I said before I've searched the net but
couldn't find any valuable information that can solve my problem.
At last but not least my JDK is 1.4.1, and tomcat 4.1.24 (i've also tried
this with 4.1.18)

Thanks in advance.


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

Reply via email to