Hmm, I see a few problems below > -----Original Message----- > From: Michele Neylon -Blacknight Solutions > [mailto:[EMAIL PROTECTED]] > Sent: Friday, July 26, 2002 1:11 PM > To: Tomcat Users List > Subject: RE: Tomcat 4, mod_jk, Apache 1.3.20 > > > At 10.47 26/07/2002 -0400, you wrote: > >Where are you storing your test.jsp? > > It's in /home/sites/www.blacknightsolutions.com/web/test.jsp > > As defined in the current configuration of my server.xml : > <Server port="8005" shutdown="SHUTDOWN" debug="0"> > <Service name="Tomcat-Apache"> > <Connector debug="0" > acceptCount="10" > minProcessors="5" > maxProcessors="75" > port="8009" > className="org.apache.ajp.tomcat4.Ajp13Connector"/> > Did you delete your HTTP Connector on purpose ? You should eventually do that, but while your setting it up, I would keep it for testing purposes. <Connector className="org.apache.catalina.connector.http.HttpConnector" port="8080" minProcessors="5" maxProcessors="75" enableLookups="false" redirectPort="8443" acceptCount="10" debug="0" connectionTimeout="10000" />
> <Engine className="org.apache.catalina.connector.warp.WarpEngine" > name="Apache" > defaultHost="ns.blacknightsolutions.com" > debug="0" > appBase="webapps"> Your Engine setup looks all wrong. You probably shouldn't specify the className, that way it will use the default className. The WARPEngine (bad name in my opinion) is a connector to Apache, not an Engine class. If you were going to specify the className it should be "org.apache.catalina.core.StandardEngine". Your defaultHost MUST point to an existing nested host element. I don't see ns.blacknightsolutions.com. I got all the info here -> http://localhost:8080/tomcat-docs/config/engine.html When configuring Tomcat, always make sure you can access your files on the 8080 port > > <!-- Global logger unless overridden at lower levels --> > <Logger className="org.apache.catalina.logger.FileLogger" > prefix="apache-" suffix=".log" > timestamp="true"/> > > <Host name="www.blacknightsolutions.com" > > <Context path="" > > docBase="/home/sites/www.blacknightsolutions.com/web" > crossContext="true" > debug="0" > reloadable="false" > trusted="false" > > </Context> > </Host> > <Host name="www.david.blacknightsolutions.com" > > <Context path="" > > docBase="/home/sites/www.david.blacknightsolutions.com/web" > crossContext="true" > debug="0" > reloadable="false" > trusted="false" > > </Context> > </Host> > <Host name="www.b2btechniques.net" > > <Context path="" > docBase="/home/sites/www.b2btechniques.net/web" > crossContext="true" > debug="0" > reloadable="false" > trusted="false" > > </Context> > </Host> > > </Engine> > </Service> > </Server> > > > > >Is it in your %CATALINA%/webapps/ROOT directory, or the directory > >defined as your default context? > > This is part of my problem! It's not in the ROOT directory, > but in a virtual host. > > > >Can you get to it by typing > >http://www.blacknightsolutions:8080/test.jsp > >? > > No. With a previous configuration I could get to the Tomcat > welcome page at: http://www.blacknightsolutions.com:8080 > I have since tried a different configuration, but although a > copy of the JSP examples (copied from the > Tomcat/webapps/examples directory) is accessible at: > http://www.blacknightsolutions.com/examples/jsp/ > nothing else involving Java is viewable and some of the > examples aren't working either :-( > > Tomcat seems to be intercepting requests for all .jsp pages, > but doesn't seem to be mapping them correctly.. > > > > >(I couldn't get to any blacknight site) > > > >As to your question about a searchable archive, > > > >There is: > > > >http://www.mail-archive.com/[email protected]/ > > > >And > > > >http://www.mail-archive.com/[email protected]/ > > > >- Andrew > > I'll try them - thanks! > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
