|
bcAuthenticate, from bestcode.com, is an ISAPI Filter dll that enables your Internet Information Server (IIS) to authenticate website visitors based on an ODBC data source.
Using bcAuthenticate you can use your existing user database to map userid and passwords to Windows NT user accounts easily. You can then protected your resources using Windows NT security mechanisms. This enables you to assign individual userid/password pairs to your users and manage them independent from each other while keeping your Windows NT accounts internal. This way, you can grant/revoke access to individual users without effecting others. This functionality also gives you the opportunity to programmatically manage users or allow the users to self register/deregister themselves through mechanisms which would not be possible with Windows NT accounts alone.
bcAuthenticate allows you to specify a SQL statement that returns mapped username and password based on 3 special variables:
:USERID - The username sent by the browser :PASSWORD - The password sent by the browser :WEBSITE - The website that this user is trying to login to (For multisite IIS Servers).
A typical SQL Statement could look like this:
SELECT MappedUser, MappedPass FROM Users WHERE User=:USERID and Pass=:PASSWORD
For a multisite IIS Server you could have something like:
SELECT MappedUser, MappedPass FROM Users WHERE User=:USERID and Pass=:PASSWORD and Server=:WEBSITE
- Filter Installation steps and options
- Configuration Settings
For purchasing, visit http://www.bestcode.com
|