ADSI Problem

  • Thread starter Thread starter wong
  • Start date Start date
W

wong

I having problem to authenticate with AD using my ASP
script. The script is working fine but when more than 700
users login at the same time then the connection will lost
with the AD.

Any idea to solve the problem? Thank you very much....!
 
when more than 700 users login at the same time

How are you keeping the 700 logins active at once and
why? If this is an ASP script, then why are you not
signing the users off after a time? Or do you really have
700+ simultaneous users to your web based product?

You can make some code in your script to manage the 700
limit as a que. Once you near "full", start signing the
least active users off. In this way you don't have to
auto-expire by time so a user who signs on and remains
active through the day won't get bumped out and have to
authenticate again.

You also may be able to re-write the script to use only
one sign on with appropriate read access, I'm not sure
what your script needs to do, but you can check each users
access against AD to confirm if your script should give
them what they want, IF the account used could safely have
access to the same data.
 
Back
Top