Prob in config tomcat to use SSL
Hello,
I have configured tomcat to use SSL exactly defined in how-to doc of apache tomcat.
but when i give URL https://localhost:8443 its simple says page cannot b displayed....and when clientAuth is set to true...
In case if i set clientAuth as false then it says There is problem with website security certificate...
Below is the connector tag tht i have..
<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"
clientAuth="true" protocol="TLS" />
</Connector>
Can any1 plzzzz help me?
Thanks in Advance.

