Thank you for your help.

I have other Server.

This server have apache 2.0.46 and httpd -l are:
  core.c
  prefork.c
  http_core.c
  mod_so.c

I switch the order of LoadModule

#--------------
LoadModule jk_module modules/mod_jk.so
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so

JkMount /jsps/servlet/* ajp13
JkMount /jsps/*.jsp ajp13
#--------------

#--------------
LoadModule access_module modules/mod_access.so
LoadModule jk_module modules/mod_jk.so
LoadModule auth_module modules/mod_auth.so

JkMount /jsps/servlet/* ajp13
JkMount /jsps/*.jsp ajp13
#--------------

#--------------
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule jk_module modules/mod_jk.so

JkMount /jsps/servlet/* ajp13
JkMount /jsps/*.jsp ajp13
#--------------

But i get the same result:

http://<my_server>/jsps/page.jsp  <-- not password needed

http://<my_server>/jsps/page.js   <-- password needed

You have any idea?

-----Mensaje original-----
De: Nikola Milutinovic [mailto:[EMAIL PROTECTED] 
Enviado el: jueves, 09 de febrero de 2006 10:34
Para: Tomcat Users List; [EMAIL PROTECTED]
Asunto: RE: Apache 2.0.50 - Tomcat 5.0.28 - Mod_jk - .htaccess

> There are any form of change the loading order or i
> would need reinstall apache.

Re-intalling will do you no good. You'd still end up
with the same Apache. Re-building it, would, but that
can be quite a task. Finding a newer version,
differently compiled, might also be a good idea.

Anyway, I'm not sure what is the loading order of
modules, but it appears that staically linked modules
load after dynamically built ins. And you have no
control over mod_access.

Nix.

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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

Reply via email to