I can connect JSPs, with reference to classes, in packages on the WEB-INF/classes directory, but I'm having trouble actually running servlets on tomcat
This are the current JkMounts I have, in my apache server, tomcat seems to start ok, Are there any directives that I have missed?
<VirtualHost DocumentRoot /var/ServerName <Directory "/var/allow from all
Options +Indexes
</Directory>
#Java Web Engine Stuff
<IfModule mod_jk.c>
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
JkMount /*.do ajp13
<Location "/WEB-INF/">
AllowOverride None
deny from all
</Location>
</IfModule>
#end of java stuff
php_value include_path ".:/usr/local/lib/php"
php_flag safe_mode on
User intelogy
</VirtualHost>
This are the current JkMounts I have, in my apache server, tomcat seems to start ok, Are there any directives that I have missed?
<VirtualHost DocumentRoot /var/ServerName <Directory "/var/allow from all
Options +Indexes
</Directory>
#Java Web Engine Stuff
<IfModule mod_jk.c>
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
JkMount /*.do ajp13
<Location "/WEB-INF/">
AllowOverride None
deny from all
</Location>
</IfModule>
#end of java stuff
php_value include_path ".:/usr/local/lib/php"
php_flag safe_mode on
User intelogy
</VirtualHost>