Preventing multiple sessions

Community forum for discussion and support of the PINK product and development kit
Post Reply
neil
Posts: 6
Joined: Fri Apr 05, 2013 9:06 am

Preventing multiple sessions

Post by neil »

Hi everyone,

I would like to prevent multiple session to be opened. Is there a parameter that stops
multiple sessions from occurring?

Thank you,

Neil
rnixon
Posts: 833
Joined: Thu Apr 24, 2008 3:59 pm

Re: Preventing multiple sessions

Post by rnixon »

Can you elaborate on exactly what behavior and what you mean by multiple sessions?
neil
Posts: 6
Joined: Fri Apr 05, 2013 9:06 am

Re: Preventing multiple sessions

Post by neil »

In other words, for only one user to be able to access the module's webpage at a time. If another user would like to go into the module's website, he/she would be blocked and a message will appear stating someone is already logged in.

Hopefully, that made it more clear.

Thank you.
User avatar
pbreed
Posts: 1080
Joined: Thu Apr 24, 2008 3:58 pm

Re: Preventing multiple sessions

Post by pbreed »

You load a web page... and your done.
There is no connection between the web server and the page visible on the browser once the page is loaded....
HTTP is stateless, ie each http request is seperate.
So given that your answer is no way to do that because no session actually EVER exists other than for the brief time
it takes to render the page and return the result.

Once its visible on the browser the pink is done and there is no longer a connection...
Post Reply