Resolve publishing issues caused by Window authentication problems.

  1. Select the Anaplan XL Web directory and open the Authentication section.
  2. Ensure ASP.NET Impersonation and Windows Authentication are enabled, and others are disabled.
  3. If you don't have these options, add them from Control Panel > Programs > Turn Windows features on or off

IFirst do the steps listed in IIS 7/7.5 then set the HTTP Activation feature:

  1. Select Server Manager > Roles and Features > Add Role or Feature > Features
  2. Then select .NET 4.5 > WCF Services > HTTP-Activation.

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>