Re: Problems with url-pattern*

2002-08-10 Thread Alexander Wallace
Kaplinger [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* define a servlet mapping of just /. this is the default servlet mapping. That's still not going to work for what the proposed use

Re: Problems with url-pattern*

2002-08-10 Thread Craig R. McClanahan
On 10 Aug 2002, Alexander Wallace wrote: Date: 10 Aug 2002 12:17:03 +0100 From: Alexander Wallace [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* What I need to be able to do is to make sure

Re: Problems with url-pattern*

2002-08-10 Thread Alexander Wallace
] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* What I need to be able to do is to make sure, that every request, for any page has enought rights to view the page and use it, So i thought of using a servlet as a controller. If I understand correctly what you

RE: Problems with url-pattern*

2002-08-10 Thread Jacob Hookom
| -Original Message- | From: Alexander Wallace [mailto:[EMAIL PROTECTED]] | Sent: Saturday, August 10, 2002 7:56 AM | To: Tomcat Users List | Subject: Re: Problems with url-pattern* | | Ok, but what I mean by access rights are a set of very custom | permissions (existing in a database

Re: Problems with url-pattern*

2002-08-10 Thread Craig R. McClanahan
On 10 Aug 2002, Alexander Wallace wrote: Date: 10 Aug 2002 13:56:15 +0100 From: Alexander Wallace [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* Ok, but what I mean by access rights

RE: Problems with url-pattern*

2002-08-10 Thread Alexander Wallace
:[EMAIL PROTECTED]] | Sent: Saturday, August 10, 2002 7:56 AM | To: Tomcat Users List | Subject: Re: Problems with url-pattern* | | Ok, but what I mean by access rights are a set of very custom | permissions (existing in a database table) givent to different roles | asigned to users of my

Re: Problems with url-pattern*

2002-08-10 Thread Alexander Wallace
[EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* Ok, but what I mean by access rights are a set of very custom permissions (existing in a database table) givent to different roles asigned to users

Re: Problems with url-pattern*

2002-08-09 Thread Todd Kaplinger
define a servlet mapping of just /. this is the default servlet mapping. To get the servlet name use request.getPathInfo(). This will return the info after the slash. From: Alexander Wallace [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: Problems with url-pattern*

2002-08-09 Thread Craig R. McClanahan
On 9 Aug 2002, Alexander Wallace wrote: Date: 09 Aug 2002 16:46:07 +0100 From: Alexander Wallace [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Problems with url-pattern* Hi there! New to the list. And to java and

Re: Problems with url-pattern*

2002-08-09 Thread Craig R. McClanahan
On Fri, 9 Aug 2002, Todd Kaplinger wrote: Date: Fri, 09 Aug 2002 17:43:36 -0400 From: Todd Kaplinger [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Problems with url-pattern* define a servlet mapping of just