Re: tomcat JSP Servlet Apache JK2

2006-08-09 Thread jeusdi
/logs/access_log common LocationMatch .*WEB-INF.* AllowOverride None Deny from all /LocationMatch JkMount /*.jsp treb /VirtualHost -- View this message in context: http://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2-tf2071029.html#a5724146 Sent

Re: tomcat JSP Servlet Apache JK2

2006-08-09 Thread David Smith
It's a difference of path. To Apache, the ecommerce webapp is the root of your site, but Tomcat does not see it that way. Tomcat only recognizes the ROOT webapp as the document root. Rename the ecommerce webapp to ROOT (notice the all caps), deleting the original ROOT directory under

Re: tomcat JSP Servlet Apache JK2

2006-08-09 Thread jeusdi
://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2-tf2071029.html#a5726353 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: tomcat JSP Servlet Apache JK2

2006-08-09 Thread David Smith
You can't place a jsp in /usr/local/tomcat/webapps. Tomcat does not make that location available to the client. You originally had a ecommerce webapp with a login.jsp file you wanted to access at the top level. I recommended you rename the webapp 'ecommerce' to 'ROOT' and reconfigure apache

Re: tomcat JSP Servlet Apache JK2

2006-08-09 Thread Mark Eggers
Deny from all /LocationMatch JkMount /*.jsp treb /VirtualHost -- View this message in context: http://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2-tf2071029.html#a5724146 Sent from the Tomcat - User forum at Nabble.com

tomcat JSP Servlet Apache JK2

2006-08-08 Thread jeusdi
a simple HTML page. In other words, when I want to access to my web Application I view the code of JSP (the code isn't interpreted like HTML code. Do you know What must I do to solve it? Thanks in advanced. -- View this message in context: http://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2

Re: tomcat JSP Servlet Apache JK2

2006-08-08 Thread David Smith
Typical cause is a config error in your mod_jk setup or your jsp file located in the wrong place. Please post details of your Apache, mod_jk, and tomcat setups for a more helpful answer. --David jeusdi wrote: Hello, I've configured Apache Web Server with mod_jk2 to communicate it with

Re: tomcat JSP Servlet Apache JK2

2006-08-08 Thread jeusdi
[uri:/*.jsp] context=/ecommerce I don't know Why it doesn't work correctly? Thanks. -- View this message in context: http://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2-tf2071029.html#a5705067 Sent from the Tomcat - User forum at Nabble.com

Re: tomcat JSP Servlet Apache JK2

2006-08-08 Thread Rainer Jung
jk2 has been deprecated quite some time ago. You might find some help for it on this list, but you should seriously consider migrating to mod_jk. The module mod_jk (*not* mod_jk2) is still being actively developed and most features of mod_jk2 have been backported to mod_jk in the meantime.

Re: tomcat JSP Servlet Apache JK2

2006-08-08 Thread jeusdi
with mod_jk. Can I use mod_jk with Apache2? -- View this message in context: http://www.nabble.com/tomcat-JSP-Servlet-Apache-JK2-tf2071029.html#a5707357 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e

Re: tomcat JSP Servlet Apache JK2

2006-08-08 Thread Rainer Jung
jeusdi wrote: If there is no choice can I use mod_jk in Apache2? I say it because I perform aptitude install mod_jk in my ubuntu Brezzy and it downloads apache1.3, but I want use Apache2 with mod_jk. Can I use mod_jk with Apache2? Uaaah. mod_jk 1.2 works with Apache 1.3, 2.0 and 2.2. The