N
ningjun.wang
We have a commercial J2EE web application. Our users pay monthly fee to
get a login. After login, they can search and browse all articles in
our web site. The problem is that some user buy one login id and then
share it to many friends who did not pay. We want to limit the
concurrent login to 5. This means if 5 users login to our site using
the same login id already, no other user can login with the same login
id anymore until some of them logout or close their browser.
This is a very common problems for any commercial web application. Is
there a design pattern or existing framework to deal with this problem?
Ningjun
get a login. After login, they can search and browse all articles in
our web site. The problem is that some user buy one login id and then
share it to many friends who did not pay. We want to limit the
concurrent login to 5. This means if 5 users login to our site using
the same login id already, no other user can login with the same login
id anymore until some of them logout or close their browser.
This is a very common problems for any commercial web application. Is
there a design pattern or existing framework to deal with this problem?
Ningjun