Application Pool Configuration
The Identity of Application pool for the application website should be set as LocalSystem.
- Go to IIS.
- Select Application pools.
Figure: Application Pool
- To find the application pool configured for the Application website:
- Right-click on the application website.
Figure: Advanced Settings
- Select Manage Application > Advanced Settings. The Advanced settings window is displayed where the Application Pool name is available.
Figure: Application Pool name
- From the list of Application Pool, select the one that is configured for the application website.
Figure: Application pools
- Go to Advanced Settings under Actions tab.
- Click on Identity under Process Model.
Figure: Advanced Settings
- Select LocalSystem in the Built-in account drop-down list.
Figure: Application Pool Identity
- Click OK.
Web.config Configuration (applicable only for Facebook and Office365):
The following code should be added in the Web.config file for the Application to use SSO login:
<system.net>
<defaultProxy useDefaultCredentials="false">
<proxy proxyaddress="Provide Your Proxy address" usesystemdefault="false"/>
</defaultProxy>
</system.net>