Hello,
> OK let me try and get this right: > When you add this statement "WebAppDeploy site-name warpConnection > /something", does Apache parse the .shtml files and Tomcat doesn't execute > the jsp's? That's right. > > And when you do this: "WebAppDeploy site-name warpConnection /", does > Apache say it cannot find the index.shtml file, but tomcat serves the jsps > correctly? Exactly! > > > Did you try adding a Context element for site-name? I'm assuming you > have site-name under webapps. And the jsps are under site-name. > <Host name="site-name" debug="0" appBase="webapps" unpackWARs="true"> > <Context path="" docBase="site-name" debug="0" reloadable="true" > crossContext="true"> > .... Yes, I did, but the result remain the same :-( > > > Where are the .shtml files located? What's the URL that you use? The .shtml files are located under /web/site-name/htdocs/... The URL I'm using is http://192.168.2.15/ > > If I were you, I would break up the process and first get Apache to parse > .shtml files and get Tomcat to serve the jsps right. Any suggestions on how do do this? > And then add the > virtual host block to connect Apache/Tomcat. > > RS Thank you for your reply, Best regards, Catalin > > > Catalin Mihailescu <[EMAIL PROTECTED]> on 04/11/2002 12:28:10 PM > > Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> > > To: Tomcat Users List <[EMAIL PROTECTED]> > cc: [EMAIL PROTECTED] > > Subject: mod_webapp and *.shtml not working > > Hello, > > I'm using a RedHat 7.0 box, Apache/1.3.22, Tomcat 4.0.2 and a site > "site-name" > that use SSI. > I cannot make them to work together (Apache to serve *.shtml and Tomcat > serve > JUST *.jsp). > > Can you please tell me what I'm doing wrong and what else should I do to > make > it work? > > My server.xml looks like: > > ______________________ > --- > <Server port="8005" shutdown="SHUTDOWN" debug="0"> > > <!-- Define an Apache-Connector Service --> > <Service name="Tomcat-Apache"> > > <Connector className="org.apache.catalina.connector.warp.WarpConnector" > port="8008" minProcessors="5" maxProcessors="10" > enableLookups="false" appBase="webapps" > acceptCount="5" debug="0"/> > > <Engine className="org.apache.catalina.connector.warp.WarpEngine" > name="testing" debug="0"> > </Engine> > > </Service> > > </Server> > _________________________ > > My httpd.conf looks like: > > _________________________________ > --- > LoadModule webapp_module libexec/mod_webapp.so > AddModule mod_webapp.c > --- > DirectoryIndex index.shtml index.html index.htm index.php index.php4 > index.jsp > > --- > AddIcon /icons/layout.gif .html .shtml .htm .pdf > --- > AddType text/html .shtml > AddHandler server-parsed .shtml > --- > WebAppConnection warpConnection warp localhost:8008 > WebAppInfo /webapp-info > --- > <VirtualHost 192.168.2.15:80> > DocumentRoot /web/site-name/htdocs > ServerName 192.168.2.15 > LogFormat "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-agent}i\"" > TransferLog /web/site-name/logs/access.log > ErrorLog /web/site-name/logs/error.log > WebAppDeploy site-name warpConnection / > </VirtualHost> > ________________________________________ > > mod_include, mod_mime, mod_cgi are also included and enabled for Apache > > I also have: > $CATALINA_HOME/webapps/site-name -> /web/site-name/htdocs > > The result is that Apache is complaining that /index.shtml was not found, > but > all my *.jsp files are properly handled by Tomcat. > If I change > WebAppDeploy site-name warpConnection / to look like > WebAppDeploy site-name warpConnection /something > Apache is not complaining, but I'll be no longer capable to read my *.jsp > files. > > Also, if instead *.shtml I use html (other site) in the same setup, > everything > goes just fine. > > Can you help, please? > > Catalin > > -- > 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]>
