This is a migrated thread and some comments may be shown as answers.

Effects of changing the httphandler for "Telerik.Web.UI.WebResource.axd" to "Telerik.Web.UI.WebResourceSession"

1 Answer 124 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
p
Top achievements
Rank 1
p asked on 06 Oct 2010, 04:40 PM
All,

To support RadCaptCha  in a web farm environment, i have to

  • Set the ImageStorageLocation property to Session;
  • Configure the httpHandler in the following way:
<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>

as per http://www.telerik.com/community/forums/aspnet-ajax/captcha/rad-captcha-image-not-showing.aspx

How does this web config change affect the other telerik controls?

TIA


1 Answer, 1 is accepted

Sort by
0
Accepted
Pero
Telerik team
answered on 08 Oct 2010, 02:51 PM
Hi TIA,

The only difference between Telerik.Web.UI.WebResourceSession and Telerik.Web.UI.WebResource is the fact that the first implements the System.Web.SessionState.IRequiresSessionState, which enables the RadCaptcha to store the CaptchaImage in the Session. In fact WebResourceSession inherits WebResource.
This being said you should not have problems with the other telerik controls that use this HttpHandler.

Greetings,
Pero
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
General Discussions
Asked by
p
Top achievements
Rank 1
Answers by
Pero
Telerik team
Share this question
or