Resolve publishing issues due to basic authentication.
IIS Settings
Depending on your IIS version, take the steps below:
IIS 7/7.5/8
Select the Anaplan XL Web directory and open the Authentication section.
Ensure ASP.NET Impersonation and Basic Authentication are enabled, and others are disabled.
Web.config
You will need to 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.
Please note that when using HTTPS the security mode should be equal to Transport.
| Authentication | Using HTTPS? | Web.config: on all bindings |
| Basic | Yes | <security mode="Transport"> <transport clientCredentialType="Basic"/> </security> |
| Basic | No | <security mode="TransportCredentialOnly"> <transport clientCredentialType="Basic"/> </security> |