Modifying the web.config File for Your Authentication Method
Archer enables you to modify the web.config file to authenticate your system for Windows integrated single sign-on (SSO).
Note: If you are configuring for Secure Socket Layer (SSL) only or for Single Sign-On integrated with Secure Socket Layer, please refer to the Archer Security Configuration Guide for complete instructions.
Modify the web.config file for Windows integrated SSO
-
Open the web.config file in a text editor.
-
Locate the <authentication mode> tag and change the authentication mode from None to Windows.
<authentication mode=”Windows”
-
Locate the <authorization> and <allow users> tags and remove the comments.
<authorization>
<allow users="*" />
</authorization>
-
Locate the <webHttpBinding> section.
- Remove the comments in the <security mode> and <transport> tags identified for Windows Authentication and change the security mode as follows:
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" />
</security>
-
Locate the <httpTransport> tag for the binaryHttpBinding.
-
Add the authenticationScheme="Negotiate" attribute to the tag.
<httpTransport maxReceivedMessageSize="1024000000" maxBufferSize="1024000000" authenticationScheme="Negotiate" />
-
Locate the <httpTransport> tag for the binaryHttpBindingStreaming binding.
-
Add the authenticationScheme="Negotiate" attribute to the tag.
<httpTransport transferMode="StreamedRequest" maxReceivedMessageSize="1024000000" maxBufferSize="1024000000" authenticationScheme="Negotiate" />
-
Locate the <location> tag and remove the comments.
<!-- Uncomment this for Single Sign On with Windows Authentication -->
<location path="default.aspx">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
-
Save the web.config file.
-
Run an IISRESET in a command prompt.