You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Chris Halverson <ch...@ncube.com> on 2002/09/23 20:40:33 UTC

RE: Still stuck with embedded tomcat (Chris Weaver, Craig?)

Still looking for a reasonable answer.....

-----Original Message-----
From: Chris Halverson 
Sent: Friday, September 20, 2002 11:11 AM
To: Tomcat Users List
Subject: Stuck with embedded tomcat

Everything seems to initialize just fine but when I try to access
something as simple as an index.html file I get nothing.  My
WEB-INF/web.xml files are fine.  There were previous posts but no
resolution posted.  Chris Weaver did you ever figure out why things
didn't work?
 
Chris Halverson
 
JDK 1.4.0_01
Tomcat jakarta-tomcat-4.0.4-LE-jdk14
 
 
StandardContext[]: Configuring application event listeners
StandardContext[]: Sending application start events
StandardContext[]: Starting filters
StandardContext[]: Posting standard context attributes
StandardContext[]: Starting completed
StandardContext[]: Mapping contextPath='' with requestURI='/index.html'
and relativeURI='/index.html'
StandardContext[]: Decoded relativeURI='/index.html'
StandardContext[]:   Trying exact match
StandardContext[]:   Trying prefix match
StandardContext[]:   Trying extension match
StandardContext[]:   Trying default match
 
 
And Nothing
Thanks

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Tomcat SSL - Still not working.

Posted by neal <ne...@yahoo.com>.
Has anyone been able to get SSL to work correctly on Tomcat Standalone?

My Sys Admin and I have followed the instructions explicitly and its still
not working!

We have setup a URL for SSL (http://secure.hotel.us) and it works find via
HTTP.  BUT, when attempting to navigate to it via https, I get a "page can
not be displayed - cannot find server or DNS error".  Or if I try
https://secure.hotel.us:443 it will never come back with a page, but I at
least get the lock to appear on IE in the bottom-right corner.

Here's what I have for my SSL and non-SSL connectors in my server.xml file.
Could someone please tell me if there is an error here:


    <!-- Define a non-SSL HTTP/1.1 Connector on port 80 -->
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
            port="80"
		minProcessors="5"
		maxProcessors="75"
            enableLookups="true"
		redirectPort="443"
            acceptCount="10"
		debug="0"
		connectionTimeout="60000"/>

    <!-- Define an SSL HTTP/1.1 Connector on port 443 -->
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
            port="443"
		minProcessors="5" maxProcessors="75"
            enableLookups="true"
	      acceptCount="10"
		debug="0"
		scheme="https"
		secure="true">

      <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
	      keystoreFile="/usr/java/j2sdk1.4.0_01/bin/keystore.name"
            clientAuth="false"
		protocol="TLS"
		keystorePass="enlogica"/>

    </Connector>


Also, here's what I have for the secure.hotel.us virtual host:

      <Host name="secure.hotel.us" appBase="webapps/hotel">
          <Context path="" docBase="" debug="10"/>
      </Host>

Thanks.
Neal


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>