authentification for differents groups FORM or BASIC

2001-07-25 Thread zze-messager FTM balr002

Hello, 


I have to do protect the accesses to my application in fuction of groups of
users.
For exemple, the group1 can access to the application if the url likes this
: 
/sc?AI=A*
/sc?AI=M*
/sc?AI=D

And the group2 can access with a url likes : /sc?AI=V*

How to do that with a FORM or a BASIC authentification ?

Delphine



RE: authentification for differents groups FORM or BASIC

2001-07-25 Thread zze-messager FTM balr002

Precision : 

The group2 must access also to the same urls that the group1.
 
group1 : 
/sc?AI=A*
/sc?AI=M*
/sc?AI=D

group2 : 
/sc?AI=A*
/sc?AI=M*
/sc?AI=D
/sc?AI=V*


-Message d'origine-
De : zze-messager FTM balr002 
Envoye : mercredi 25 juillet 2001 18:04
A : '[EMAIL PROTECTED]'
Objet : authentification for differents groups FORM or BASIC


Hello, 


I have to do protect the accesses to my application in fuction of groups of
users.
For exemple, the group1 can access to the application if the url likes this
: 
/sc?AI=A*
/sc?AI=M*
/sc?AI=D

And the group2 can access with a url likes : /sc?AI=V*

How to do that with a FORM or a BASIC authentification ?

Delphine



Re: authentification for differents groups FORM or BASIC

2001-07-25 Thread Craig R. McClanahan



On Wed, 25 Jul 2001, zze-messager FTM balr002 wrote:

 Hello, 
 
 
 I have to do protect the accesses to my application in fuction of groups of
 users.
 For exemple, the group1 can access to the application if the url likes this
 : 
 /sc?AI=A*
 /sc?AI=M*
 /sc?AI=D
 
 And the group2 can access with a url likes : /sc?AI=V*
 
 How to do that with a FORM or a BASIC authentification ?
 

See the servlet spec for more details (URL in a previous response), but
you're not going to be able to use container managed security to
differentiate URLs that have different query strings.  They have to be
different URL patterns (same kind of patterns as used for servlet
mappings).

 Delphine
 

Craig