Re: Disabling JSP's

2009-05-18 Thread Lukasz Lenart
Check that solution [1], is better and should works for any kind of servlet container; putting files under WEB-INF is not always good because there isn't strict specification to protect files under WEB-INF - it works for Tomcat but I don't know if it does for others. [1]

Re: Disabling JSP's

2009-05-17 Thread Scott Stanlick
Put you pages under web-inf On May 15, 2009, at 1:36 PM, Timothy Orme to...@genome.med.harvard.edu wrote: Hello All, I'm in the process of migrating pages from JSP's using snippets to struts actions. I'm wondering how people have disabled access to JSP's so that they cannot be

Disabling JSP's

2009-05-15 Thread Timothy Orme
Hello All, I'm in the process of migrating pages from JSP's using snippets to struts actions. I'm wondering how people have disabled access to JSP's so that they cannot be accessed outside of the action anymore. Right now if I have an action like: action name=ViewIndex

Re: Disabling JSP's

2009-05-15 Thread Jim Kiley
Put the JSP under /WEB-INF -- it is accessible to Struts routing but not directly viewable by end clients. jk On Fri, May 15, 2009 at 2:36 PM, Timothy Orme to...@genome.med.harvard.eduwrote: Hello All, I'm in the process of migrating pages from JSP's using snippets to struts actions.

Re: Disabling JSP's

2009-05-15 Thread Timothy Orme
Ah perfect, I was not aware this was the case. Thanks! Jim Kiley wrote: Put the JSP under /WEB-INF -- it is accessible to Struts routing but not directly viewable by end clients. jk On Fri, May 15, 2009 at 2:36 PM, Timothy Orme to...@genome.med.harvard.eduwrote: Hello All, I'm in the