New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Run the RadScheduler in Anonymous Authorization Disabled Environment

This article shows how to configure the WCF service in order to run the RadScheduler in anonymous authorization disabled environment.

Troubleshooting

In order to run the RadScheduler in anonymous authorization disabled environment you have to enable the CredentialsTransportation within the WCF configuration.

Example 1: Configure WCF service to enable the CredentialsTransportation.

<system.servicemodel>
    <bindings>
      <basicHttpBinding>
        <binding>
          <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Windows" />
          </security>
        </binding>
      </basicHttpBinding>
      <webHttpBinding>
        <binding>
          <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Windows" />
          </security>
        </binding>
      </webHttpBinding>
    </bindings>
</system.servicemodel>
In this article