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

Using WebFarm or WebGarden Environment

By default the RadCaptcha control stores the CaptchaImage in the Cache object. In case your application is configured to run in any of the environments, listed below, there will be a problem accessing the captcha image:

  • Web Farm - The application runs on more than one web server at the same time.

  • Web Garden - The application runs on a single server, but the server load is divided among many worker processes (more than one process are running the same application).

Usually, every server (or every worker process) has an independent Cache, which means that, when the page request is not handled by the same web server (worker process), the CaptchaImage will be null and a gray image will be shown.

To avoid this behavior, you should store the CaptchaImage in the Session, and configure your server environment to use out of process Session State(i.e. the Session object is shared among different processes and servers). Practically you need to:

  1. Set the ImageStorageLocation property of RadCaptcha to Session;

  2. Configure the Telerik httpHandler in the following way:

    web.config

    <configuration>
        <system.web>
            <httpHandlers>
                <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResourceSession" verb="*" validate="false" />
            </httpHandlers>
        </system.web>
        <system.webServer>
            <handlers>
                <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResourceSession" />
            </handlers>
        </system.webServer>
    </configuration>
    
  3. Ensure that you have configured your server environment to use out of process Session State. In order to setup such Session State, you can apply any of the following solutions:

    • Deploy the out-of-process Session State server that is provided with ASP.NET.

    • Manually configure each Web server to store Session State data on a SQL Server.

  4. Make sure the same machineKey is used on all servers in the farm.

    web.config

    <system.web>
       <machineKey decryptionKey="theSameDecryptionKeyForAllServers" validationKey="TheSameValidationKeyForAllServers" />
    </system.web>
    

See Also

In this article