Hi , I am getting problem in configuring ssl on tomcat 5.5 I genrated private key and certificate using openssl then i copied these in top directory of tomcat. And enable the 8443 connector in server.xml file in following way <Connector port="8443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" SSLEngine="on" SSLCertificateFile="C:\Program Files\Apache software Foundation\Tomcat 5.5\localhost.pem" SSLCertificateKeyFile="C:\Program Files\Apache software Foundation\Tomcat 5.5\localhostkey1.pem" SSLPassword="abcdef"
/> But its not working . suggest me where i m making an error