Re: Problem in Welcome-file-list and security

2004-03-25 Thread shanmugampl
Found out the problem. Changing the from */jsp/test.jsp* to *jsp/test.jsp *solves the issue. The additional / causes some changes in the url pattern and as a result the request was not considered to be secured one. Thanks for your effort. -Shan- Tim Funk wrote: Make your welcome file index.j

Re: Problem in Welcome-file-list and security

2004-03-25 Thread Tim Funk
Make your welcome file index.jsp. Then for that specific URL (/) - have it redirect to jsp/test.jsp. That way the external redirect forces the security constraint to be caught. For example: index.jsp: <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c"%> -Tim shanmugampl wrote: My v

Re: Problem in Welcome-file-list and security

2004-03-25 Thread shanmugampl
My very first page is the login screen. If i have specified security constraints, then how can i show the login screen as the first screen. The request should actually go to a secured screen, and this will bring up the login screen. Thats the reason, i require the first page to be secured. Is t

Re: Problem in Welcome-file-list and security

2004-03-24 Thread Tim Funk
Security constraints are in the incoming URL. [ Also welcome files *should*(but not required) be single files - not files buried under a directory. Good: cowbell.jsp Bad: more/cowbell.jsp ] -Tim shanmugampl wrote: Hi, I am using 5.0.19 & I have the following definition in my web.xml file

Problem in Welcome-file-list and security

2004-03-23 Thread shanmugampl
Hi, I am using 5.0.19 & I have the following definition in my web.xml file * /jsp/test.jsp* Secured Core Context * /jsp/** * FORM /login/login.jsp /login/login.jsp Now if i access my application as http://loca