Tony Elmiger
|
| Posted: 09/17/2005, 7:33 PM |
|
I designed several ccs applications using the standard CCS login procedure and the default UserID UserLogin GroupID variable.
If I login into 1 application I can switch to my other applications and I am also logged into my other applications. Even if the applications are hosted on different servers.
Is there a way around this besides changing the UserID and GroupID variable in every application
TonyE
|
|
|
 |
Damian Hupfeld
|
| Posted: 09/18/2005, 5:32 AM |
|
I believe that this was fixed in the last version of 2.X.X but the other way
is to do as you suggest:
for website acme.biz use acme_id/acme_login/acme_pass etc
for website abc.com use abc_id/abc_login/abc_pass etc
etc
Damian
<TonyElmiger@forum.codecharge (Tony Elmiger)> wrote in message
news:5432cd207c30e2@news.codecharge.com...
>I designed several ccs applications using the standard CCS login procedure
>and
> the default UserID UserLogin GroupID variable.
>
> If I login into 1 application I can switch to my other applications and I
> am
> also logged into my other applications. Even if the applications are
> hosted on
> different servers.
>
> Is there a way around this besides changing the UserID and GroupID
> variable in
> every application
>
> TonyE
>
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
DonB
|
| Posted: 09/18/2005, 6:35 PM |
|
This sounds strange. Session variables are used to store the user
information, and these cannot be passed between servers.
You could append a bit of code to the login form so that it appends the
server or application name to the UserLogin and thus the login for one
server or application would not be valid for another. Alternately, you might
assign different ranges of group IDs to different servers/apps so that there
is no overlap between them. Then normal security checks would block access
until they logged into each server or application.
--
DonB
http://www.gotodon.com/ccbth
<TonyElmiger@forum.codecharge (Tony Elmiger)> wrote in message
news:5432cd207c30e2@news.codecharge.com...
> I designed several ccs applications using the standard CCS login procedure
and
> the default UserID UserLogin GroupID variable.
>
> If I login into 1 application I can switch to my other applications and I
am
> also logged into my other applications. Even if the applications are
hosted on
> different servers.
>
> Is there a way around this besides changing the UserID and GroupID
variable in
> every application
>
> TonyE
>
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
lwismanuel
Posts: 39
|
| Posted: 09/18/2005, 8:34 PM |
|
This sounds strange. Session variables are used to store the user information, and these cannot be passed between servers.
Yes, that is true if each server do not use a common place (such as: a shared drive or database table) to store their session.
|
 |
 |