It worked fine when using standalone. It is not working through Apache via WARP though. However, I can still run the servlets and jsps. I simply can't access and .html files that exist under the webapp directory ($CATALINA_HOME/webapps/examples/*.html for example). So, I can run this with no problem ...
http://java.whalin.com/examples/servlet/HelloWorldExample But, I can't access http://java.whalin.com/examples/servlets/ See my problem? For some reason, I get a 404 (generated by Apache) when I try to load that page. And, I get 404 errors in my apache error log. Not sure how WARP is supposed to deal with static content in the webapps dir that I have deployed. Greg -- Gregory Whalin [EMAIL PROTECTED] On Mon, 8 Apr 2002 [EMAIL PROTECTED] wrote: > > did you try accessing your examples directory using Tomcat standalone? Does > Tomcat serve the servlets and jsps? You might need to enable the > HttpConnector for this. Once you know for sure that Tomcat serves the > servlets and jsps on port 8080, then go ahead and put a webserver in front > of Tomcat. > Just my 2 cents. > > RS > > > > > > Gregory Whalin <[EMAIL PROTECTED]> on 04/08/2002 11:15:11 AM > > Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] > cc: > > Subject: Problem with Tomcat 4.0.*/mod_webapp.so/Apache-1.24 and virtual > hosts > > I am having a small issue with setup. I am connecting fine to the > examples webapp, but, I can't seem to view any .html files that are a part > of the app. Apache is looging them as a 404, but they are still not found > even if I put them in the apache doc root. So it seems that Tomcat does > not know how to send them on to Apache. Now, this has me perplexed > because I have setup Apache/Tomcat integration via mod_webapp before and > not had any issues, although I was not using virtual hosts before. Any > ideas what I am doing wrong. The configs are below and I can send any > additional helpful info you might need (logs, etc.). Also, please feel > free to take a look at my test site http://java.whalin.com/examples/ > > > httpd.conf > -- > > LoadModule webapp_module libexec/mod_webapp.so > ... > <VirtualHost *> > ServerName java.whalin.com > DocumentRoot /usr/local/htdocs/javawww > > WebAppConnection conn warp localhost:8008 > WebAppDeploy examples conn /examples > WebAppDeploy tomcat-docs conn /tomcat-docs > WebAppInfo /webapp-info > > ErrorLog logs/java_error_log > CustomLog logs/java_access_log combined > </VirtualHost> > > -- > server.xml > -- > > <Server port="8005" shutdown="SHUTDOWN" debug="1"> > <Service name="Tomcat-Apache"> > > <Connector > className="org.apache.catalina.connector.warp.WarpConnector" > port="8008" minProcessors="5" maxProcessors="75" > enableLookups="false" appBase="webapps" > acceptCount="10" debug="1"/> > > <Engine className="org.apache.catalina.connector.warp.WarpEngine" > name="Apache" defaultHost="java.whalin.com" debug="1"> > > <Host name="java.whalin.com" debug="1" > appBase="webapps" unpackWARs="true"> > > <Logger className="org.apache.catalina.logger.FileLogger" > prefix="apache_log." suffix=".txt" > timestamp="true"/> > > <Realm className="org.apache.catalina.realm.MemoryRealm" /> > > <Context path="/examples" docBase="examples" debug="1" > reloadable="true" crossContext="true"> > > <Logger className="org.apache.catalina.logger.FileLogger" > prefix="java.whalin.com_examples_log." > suffix=".txt" timestamps="true"/> > > </Context> > </Host> > </Engine> > </Service> > </Server> > > Thanks for any help or ideas! > Greg > -- > Gregory Whalin > [EMAIL PROTECTED] > > > -- > To unsubscribe: <mailto:[EMAIL PROTECTED]> > For additional commands: <mailto:[EMAIL PROTECTED]> > Troubles with the list: <mailto:[EMAIL PROTECTED]> > > > > > > > > > > -- > To unsubscribe: <mailto:[EMAIL PROTECTED]> > For additional commands: <mailto:[EMAIL PROTECTED]> > Troubles with the list: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
