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

Web Config Dialog Handlers not recognized inside <location> tag

2 Answers 93 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Joshua
Top achievements
Rank 1
Joshua asked on 14 May 2010, 05:30 PM
We have a project that has a Web.Config for an appliation at our main site level (e.g. somewebsite.com), and we have further applications underneath of this main site. Because of this, inside our root level web.config, we have a number of things inside a <location> tag, to prevent child applications from inheriting a lot information. The Telerik dialog handlers fall within this location tag. If we remove the location tag, the dialogs within rad editor will work fine. With the location tag in place, however, the dialogs will not load (it gives the error saying you must add a handler in your web config for the dialogs). Any idea on this?

<location path="." InheritInChildApplications="false"
... 
<httpHandlers> 
   ... 
   <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2008.3.1125.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" /> 
 <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2008.3.1125.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" /> 
</httpHandlers>
...
</location> 
 

2 Answers, 1 is accepted

Sort by
0
Dobromir
Telerik team
answered on 19 May 2010, 01:54 PM
Hi Joshua,

I tried to reproduce the problem on our side but to no avail. Could you please provide more detailed information on the subject so we can investigate it further?
  1. Which version of RadControls for ASP.NET AJAX you are using in your application?
  2. Which version of the .NET Framework you are using in your application?
  3. Under which browser and its version this problem occurs?
  4. Could you please provide a simple project that reproduces the problem?
  5. Could you please provide the exact steps that need to be executed in order to reproduce the issue?

On a side note, if RadEditor is not in a root level application, have you tried providing a web.config file to the child application with the standard declaration of the httpHandlers?

Looking forward to hearing from you,
Dobromir
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.
0
Joshua
Top achievements
Rank 1
answered on 19 May 2010, 04:12 PM
Thank you for the reply. We were actually able to solve this by pulling the Telerik http handlers out of the <location> tag, and then removing the duplicate http handlers from the child application's web.config.
Tags
Editor
Asked by
Joshua
Top achievements
Rank 1
Answers by
Dobromir
Telerik team
Joshua
Top achievements
Rank 1
Share this question
or