htmlspider
|
| Posted: 12/03/2002, 1:37 AM |
|
Hello,
I have to create several applications and that apps will share the same DB.
The user DB is shared too, the user can have one access level to one app,
other access level to other app and the access should be denied to another
app. Is there any suggestion of how to implement this using CodeCharge
Studio?
Thanks in advance,
Juan
|
|
|
 |
Vic
|
| Posted: 12/03/2002, 2:37 AM |
|
Hi Juan,
Try to use different Group ID Variables(Project Setting-> Security->Advanced
Security Settings) for different application and ,
probably, add your checks to common function CCSecurityAccessCheck
Vic
"htmlspider" <velazquez@htmlspider.com.br> wrote in message
news:ashu01$8ht$1@news.codecharge.com...
> Hello,
>
> I have to create several applications and that apps will share the same
DB.
> The user DB is shared too, the user can have one access level to one app,
> other access level to other app and the access should be denied to another
> app. Is there any suggestion of how to implement this using CodeCharge
> Studio?
>
> Thanks in advance,
> Juan
>
>
|
|
|
 |
Terry Valladon
|
| Posted: 12/03/2002, 4:51 PM |
|
in your user table assign 3 diffrent values:
app_access_1
app_access_2
app_access_3
then in app 1 in security have it access app_access_1
app 2 in security have it access app_access_2
app 3 in security have it access app_access_3
This should allow for same user/pass on all three apps with diffrent access
levels for each and only one db/table to deal with.
Hope this helps,
Terry Valladon
"htmlspider" <velazquez@htmlspider.com.br> wrote in message
news:ashu01$8ht$1@news.codecharge.com...
> Hello,
>
> I have to create several applications and that apps will share the same
DB.
> The user DB is shared too, the user can have one access level to one app,
> other access level to other app and the access should be denied to another
> app. Is there any suggestion of how to implement this using CodeCharge
> Studio?
>
> Thanks in advance,
> Juan
>
>
|
|
|
 |
|