Hello,

I have a problem connecting Tomcat 4.0.1 and Appache HTTP Server 1.3.22
through WebApp module. They however seem to connect but the HTTP server
doesn't seem to redirect the servlet calls to the Tomcat Engine.

I have loaded the WebbApp module and added it in the httpd.conf. Here is
also how I define the connection between the two in that file: 
<IfModule mod_webapp.c>
        WebAppConnection conn      warp  doinap:8008
        WebAppDeploy   sivadoc    conn  /sivadoc
</IfModule>

In the Tomcat server.xml file I have commented out the standalone service
and tried to configure the Tomcat-Apache service. Here is what my service
looks like:
  <Service name="Tomcat-Apache">

    <Connector className="org.apache.catalina.connector.warp.WarpConnector"
     port="8008" minProcessors="5" maxProcessors="75"
     enableLookups="true"
     acceptCount="10" debug="0"/>

    <!-- Replace "localhost" with what your Apache "ServerName" is set to
-->
    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
     name="Apache" debug="0" defaultHost="doinap" docBase="webapps">

      <!-- Global logger unless overridden at lower levels -->
      <Logger className="org.apache.catalina.logger.FileLogger"
              prefix="apache_log." suffix=".txt"
              timestamp="true"/>

      <!-- Because this Realm is here, an instance will be shared globally
-->
      <Realm className="org.apache.catalina.realm.MemoryRealm" />
      
    </Engine>
  </Service>

The servlets initialize, the tomcat apache_log file says that the connection
has been made, I can connect to the system on the 8080 port defined for the
HTTP server, everything seems ok but when I try to use a servlet it says
that the page is unavailable and the Apache seems to get hanged. I guess
something is wrong in my configuration files...

I understand that there are problems with the webapp module and that we are
recommended to get a nightly version. Where can I find a build of one of
them? 

Thanks a lot for the support,
Doina


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to