Hi all,
I'm facing a wierd issue with RadCaptcha, it was working perfectly until I decided to add custom HttpModule to the web application. (image doesn't show up).
If I remove the custom module from web.config RadCaptcha starts to work again.
RadCaptcha doesn't work with the custom HttpModule either on the local dev machine or in production (Azure).
I checked few forum posts and gave a try to set the ImageStorageLocation property of RadCaptcha to Session:
Even tho I'm not running in a web farm or web garden, but this doesn't solve the issue.
Any ideas why this is happening?
Note: using Telerik version: 2014.1.403.45
Thanks for the help!
I'm facing a wierd issue with RadCaptcha, it was working perfectly until I decided to add custom HttpModule to the web application. (image doesn't show up).
If I remove the custom module from web.config RadCaptcha starts to work again.
<
modules
runAllManagedModulesForAllRequests
=
"true"
>
<
add
name
=
"MyModule"
type
=
"MyModule"
/>
</
modules
>
RadCaptcha doesn't work with the custom HttpModule either on the local dev machine or in production (Azure).
I checked few forum posts and gave a try to set the ImageStorageLocation property of RadCaptcha to Session:
<
httpHandlers
>
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResourceSession, Telerik.Web.UI"
verb
=
"*"
validate
=
"false"
/>
</
httpHandlers
>
<
handlers
>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResourceSession, Telerik.Web.UI"
/>
</
handlers
>
Even tho I'm not running in a web farm or web garden, but this doesn't solve the issue.
Any ideas why this is happening?
Note: using Telerik version: 2014.1.403.45
Thanks for the help!