A few things: 1. It's helpful to try connecting directly to Tomcat before dealing with the connectors.
2. The invoker servlet is not active by default so you will need to either activate it (not recommended) or map the servlet in your web.xml file. This also means that you can pull the "servlet" part from your URL. 3. I believe packages are now required. On Thu, 2004-10-14 at 19:29, Jason Cook wrote: > Hi, everybody! > > I'm brand new to Tomcat, and I'm having problems making a customer's > site accessible on a new Tomcat 5.0.27 installation. > > For the purposes of discussion, the customer's virtualhost name is > secure.customername.com. The customer's website is located in > /home/www/customername.com/secure, and the directory contains what I > think to be a valid WEB-INF file structure, with the servlet jar in > /lib, and a web.xml. > > Apache 1.3 is being used to serve the site, with mod_jk being used to > pass the servlet requests on to Tomcat. My Apache virtualhost directive > contains: > > JkMount /*.jsp ajp13 > JkMount /servlet/* ajp13 > > And I have the following Host directive in my server.xml: > > <Host name="secure.customername.com" > appBase="/home/www/customername.com/secure"> > <Context path="" docBase="/home/www/customername.com/secure" > debug="0" reloadable="true" /> > <Logger className="org.apache.catalina.logger.FileLogger" > directory="logs" prefix="secure.customername.com_log." > suffix=".txt" > timestamp="true" verbosity="4"/> > </Host> > > Attempts to access the servlet named 'porder' at > http://secure.customersite.com/servlet/porder return a HTTP Status 404 - > /servlet/porder error from Tomcat. Additionally, the log I'm trying to > configure above isn't even showing up. > > What am I missing here? > > Thanks in advance, > Jason L. Cook > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
