Hello,
Thanks for responding well when I impelmented SSL in tomcat i made the following changes in server.xml
<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="8" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
<Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
keystoreFile="c:\Tomcat_40\conf\jass" keystorePass="twinsoft"
clientAuth="false" protocol="TLS" />
</Connector>
This connector tag was commented earlier and to support SSL we have to make this connector tag uncommnet and then specify your certificates path and passsword as I mentioned in <facotry> tag ,then save ur file and start tomcat again and run tomcat like
https://localhost:8443/index.html.And it would run .
I hope you must have set JSSE_HOME and must have saved the three file in jdk.1.3lib/ext/three.jar files.
So do ask what errors u are getting .
Thanks