Hi,

I had the same problem. Edit server.xml file and change port to 443 and then
use just https://localhost.

Part of the server.xml file:

<Connector className="org.apache.tomcat.service.PoolTcpConnector">
  <Parameter name="handler"
    value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
    <!-- Original
      <Parameter name="port" value="8443"/>
    -->
    <Parameter name="port" value="443"/>
    <Parameter name="socketFactory"
      value="org.apache.tomcat.net.SSLSocketFactory" />
</Connector>

> I want to set up SSL on Tomcat without using Apache. For this, I have
> followed the steps outlined in the tomcat tutorial. Added SSL Jars to
> JAVA_HOME/JRE/lib/ext and TOMCAT_HOME/lib. I generated a new certificate
> using keytool -genkey. Uncommented the SSL lines in server.xml.
> Now, when I
> start Tomcat, the SSL sockets start but when I type
> https://localhost:8443/
> the browser keeps on waiting but nothing comes. Do I have to install my
> applications on SSL again in some otherway or will the same content that
is
> available at http://localhost will be automatically available on https as
> well?

Yours,
Niko Luojum�ki
ZenPark Software

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to