Configure Basic authentication for a classic-mode Web application (SharePoint Server 2010)
Copy-paste from:
http://technet.microsoft.com/en-us/library/gg558567%28v=office.14%29.aspx
To configure IIS to enable Basic authentication
What is “realm” in IIS authentication :
Copy-paste from:
http://stackoverflow.com/questions/4896305/what-is-realm-in-iis-authentication-and-how-is-it-related-to-ssl-certificate-p
http://tools.ietf.org/html/rfc2617#section-1.2
http://technet.microsoft.com/en-us/library/gg558567%28v=office.14%29.aspx
To configure IIS to enable Basic authentication
- Verify that you have one of the following administrative credentials:
- You must be a member of the Administrators group on the server on which you are configuring IIS.
- You must be a member of the Administrators group on the server on which you are configuring IIS.
- On the Start menu, point to All Programs, click Administrative Tools , and then click Internet Information Services (IIS) Manager to start the IIS Management Console.
- Expand Sites
on the console tree, right-click the IIS Web site that corresponds to
the Web application zone on which you want to configure Basic
authentication.
- In Features View, double-click Authentication.
- On the Authentication page, select Basic Authentication.
- In the Actions pane, click Enable to use Basic authentication with the default settings.
- In the Actions pane, click Edit to enter a realm name.
- In the Edit Basic Authentication Settings dialog box, in the Realm text box, type the appropriate realm and click OK.
What is “realm” in IIS authentication :
Copy-paste from:
http://stackoverflow.com/questions/4896305/what-is-realm-in-iis-authentication-and-how-is-it-related-to-ssl-certificate-p
http://tools.ietf.org/html/rfc2617#section-1.2
The realm directive (case-insensitive) is required for all authentication schemes that issue a challenge. The realm value (case-sensitive), in combination with the canonical root URL (the absoluteURI for the server whose abs_path is empty; see section 5.1.2 of [2]) of the server being accessed, defines the protection space. These realms allow the protected resources on a server to be partitioned into a set of protection spaces, each with its own authentication scheme and/or authorization database. The realm value is a string, generally assigned by the origin server, which may have additional semantics specific to the authentication scheme. Note that there may be multiple challenges with the same auth-scheme but different realms.
Comments
Post a Comment