Understand AuthtypeN usage and determine if needed

| |

We need to understand what the purpose of the authtypeN values in the ISAPI filter are for (looks like backward compatibility) and if we need them (I'm guessing not).

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

AuthType setting usage

AuthType is a web property, that configures the authentication type for a particular web folder by specifying a string defined by AuthTypeNameN.
If not specified, then it takes the default value, AuthTypeName0 ("None")

AuthTypeNameN is a filter variable that defines the various authentication types within the Pubcookie Isapi filter.

AuthTypeNameN, where N can be any one of the following:
*0- "None"- For an application that doesn't need any authentication.
*1- "BlazerID"-LDAP authentication
*2-not needed.

We are only concerned with AuthTypeName1.