How can I disable handler detection for all Telerik controls?
My Sitefinity 6 site was working just fine until I wrap several sections of the web.config file in order to prevent child applications from inheriting them.
For example, I can wrap system.web, system.serviceModel, system.webServer, and microsoft.identityModel inside a tag like the following:
<
location
path
=
"."
inheritInChildApplications
=
"false"
>
I ended up wrapping everything mentioned above in the location element that restricts child application inheritance, except for the handlers and modules. I left the elements system.web\httpHandlers, system.web\httpModules, system.webServer\handlers, and system.webServer\modules at the root level of the configuration element (not inside the location element). Then, in my child application, I removed each handler/module the parent declares.