My guess;  without seeing any of your configuration, is that you have not 
made the appropriate changes to your server.xml file.
i.e.
        <Context path="/myApps/"
                 docBase="/home/httpd/html/myApps" 
                 crossContext="true"
                 debug="0" 
                 reloadable="true" 
                 trusted="false" > 
        </Context>

And / Or you have not made the appropriate changes to your httpd.conf file
i.e.
#########################################################
# Configuration for the /myApps context starts.
#########################################################
#
# The following line makes apache aware of the location of the /ai context
#
Alias /apps/helpdesk "/home/httpd/html/myApps"
<Directory "/home/httpd/html/myApps">
    Options Indexes FollowSymLinks
</Directory>

#
# The following line mounts all JSP files and the /servlet/ uri to tomcat
#
JkMount /myApps/servlet/* ajp13
JkMount /myApps/*.jsp ajp13


#
# The following line prohibits users from directly accessing WEB-INF
#
<Location "/myApps/WEB-INF/">
    AllowOverride None
    deny from all
</Location>

#
# The following line prohibits users from directly accessing META-INF
#
<Location "/myApps/META-INF/">
    AllowOverride None
    deny from all
</Location>

#######################################################
# Configuration for the /myApps context ends.
#######################################################



On Thu, 15 Feb 2001, you wrote:
> I am new to the list, and I am sorry for posting the same question twice,
> but I am still stuck with Apache and Tomcat (using mod_jk).
> I used the instructions in mod_jk.howto. I read both manual and
> Tomcat-Apache HOWTO, but all the stuff related to mod_jk is in the howto
> mentioned above.
> Tomcat is up and running as standalone; Apache is up and running.
> Configuration for mod_jk is used,mod_jk is loaded and working as I can see
> from the log file, mod_jk tries to find workers in workers.properties, but
> each request for virtual directories reserved to Tomcat never comes to the
> tomcat engine, as there is no communication on port 8009.
> Any hint would be helpful. Excuse me again and TIA.
> Eugenio Ascoli-Bartoli
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]

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

Reply via email to