I would suggest that you quit using mod_webapp. It is not actively developed any longer. Use mod_jk or jk2. mod_webapp is probably doing some funky cacheing. I couldn't tell you for sure and neither could most people. This is because almost no one uses mod_webapp anymore and you will be hard pressed to find any support out there for it. Make the switch and see if mod_jk or jk2 solves your problem.


Jake

At 03:49 PM 3/8/2003 -0500, you wrote:
----- Original Message -----
From: "Ben Ricker" <[EMAIL PROTECTED]>
Subject: Re: Tomcat application redeploy behind Apache server


> So you are saying that you cannot go to /manager/reload?path/to/webapp?


No.  The manager application works perfectly.  The application is redeployed
and I can see the new functionality if I go into the Tomcat server directly.
The problem, as I have explained countless times, is that a user coming
through the Apache front end continues to see the old class behavior.

> Anyway, more info would be needed. One more thing to add: if you can
> embed the mod_jk configs you added to httpd.conf and any
> workers.properties/mod_jk.properties you setup, I can help you better.

The definition of the connector on the Tomcat side is:

    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8009" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="0"
               useURIValidationHack="false"

protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>

The definition of the connector on the Apache side is:

LoadModule webapp_module modules/mod_webapp.so

<IfModule mod_webapp.c>
WebAppConnection warpConnection warp 127.0.0.1:8008
WebAppDeploy examples warpConnection /examples/
WebAppInfo /webapp-info
</IfModule>

WebAppDeploy cocoon warpConnection /cocoon/
WebAppDeploy Census warpConnection /Census/
WebAppDeploy Ocfa warpConnection /Ocfa/
WebAppDeploy manager warpConnection /manager/

Please understand that I am not personally responsible for either the Tomcat
or Apache servers.  They are being supported by someone else.  So my
understanding of details is limited.  I barely even know where to look for
the configuration files, never mind what their contents mean.  I am an
application programmer and I honestly have very little motivation to clutter
my mind with such details.  I just need a set of configuration data that
works.  Surely SOMEBODY has got this to work?


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to