Resolve publishing issues caused by Window authentication problems.
IIS Settings
IIS 7/7.5
- Select the Anaplan XL Web directory and open the Authentication section.
- Ensure ASP.NET Impersonation and Windows Authentication are enabled, and others are disabled.
- If you don't have these options, add them from Control Panel > Programs > Turn Windows features on or off
IIS 8
IFirst do the steps listed in IIS 7/7.5 then set the HTTP Activation feature:
- Select Server Manager > Roles and Features > Add Role or Feature > Features.
- Then select .NET 4.5 > WCF Services > HTTP-Activation.
Web.config
Change the web.config file to include entries for all bindings. These entries are dependent on the authentication mode (Basic, Windows, or Anonymous) and whether you are using HTTPS.
When using HTTPS, set the security mode to Transport.
| Using HTTPS? | Web.config: on all bindings |
| Yes | <security mode="Transport"> <transport clientCredentialType="Windows"/> </security> |
| No | <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> |