When we are running Apache Tomcat from IDE's toolbar, we can not browse https
but when we are running with tomcat7.exe file, it can browse with https and accept certificate.
In server.xml, we wrote a connector tag as follow.
<Connector
clientAuth="true" port="8443" minSpareThreads="5" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" maxThreads="200"
keystorePass="123456"
scheme="https" secure="true" SSLEnabled="true"
SSLCertificateFile="C:\Program Files\Apache Software Foundation\Tomcat 7.0\ycassl.cer"
SSLCertificateKeyFile="C:\Program Files\Apache Software Foundation\Tomcat 7.0\ycassl.key"
SSLCACertificateFile="C:\Program Files\Apache Software Foundation\Tomcat 7.0\CertPath.txt"
SSLVerifyClient="require" SSLEngine="on" SSLVerifyDepth="2" sslProtocol="TLS"
/>
What wrong in these two? Please explain me.