The moose likes Security and the fly likes I need help in ssl in tomcat Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » Security
Reply Bookmark "I need help in ssl in tomcat " Watch "I need help in ssl in tomcat " New topic
Author

I need help in ssl in tomcat

Jasmine kaur
Ranch Hand

Joined: Nov 25, 2003
Posts: 155
Hello everybody,
well Iam using SSL in tomcat and to enable this I downloded JSSE and put the all the necessary files in jdk1.3\bin\lib\ext and I generated the keystore using keytool utility and generated the tomcat.cer certificates and saved in c:\tomcat .
After that I configured server.xml like this

<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="false"
acceptCount="10" debug="2" scheme="https" secure="true"

keystoreFile="c:\tomcat\my.keystore" keystorePass="changeit" keystoreType="JKS>
<Factory className="org.apache.catalina.net.SSLServerSocketFactory"
clientAuth="true" protocol="TLS"/>
</Connector>

Here I specified my keystore file path and ist password ,
well after uncommenting this i tried https://localhost:8443/ but its not working even I configured internet explorer.
So can you tell me where Iam wrong as I followed all the steps from tomcat documentation but I think Iam either making some mistakes or forgetting something so can u help me .
Thanks
jasbir


jasmine kaur
Jasmine kaur
Ranch Hand

Joined: Nov 25, 2003
Posts: 155
Hello Everybody,
I have solve the SSl with Tomcat and its working perfectly with Mozilla and opera but not with Internet explorer, Anyway thsnks and I hope I will solve this problem.
Thanks
Jasbir
 
 
subject: I need help in ssl in tomcat
 
Threads others viewed
Tomcat SSL problem
Configure https
Problem with implementing SSL
SSL & JAAS Exception
Self-signed certificate in tomcat
developer file tools