Sameh Awad
Top achievements
Rank 1
Sameh Awad
asked on 10 May 2008, 06:34 AM
Hi,
I am using RAD Editor AJAX with visual studio 2008, and when i am trying to open the photos dialog a message appears that the web.config HttpHandlers registation is missing, then I registerd the HttpHandler in the web.config using the Editor smart tag and the message still appear, please tell me what is the problem.
I am using RAD Editor AJAX with visual studio 2008, and when i am trying to open the photos dialog a message appears that the web.config HttpHandlers registation is missing, then I registerd the HttpHandler in the web.config using the Editor smart tag and the message still appear, please tell me what is the problem.
5 Answers, 1 is accepted
0
Hi Sameh,
Please, see the following KB articles on the topic:
Registering the HttpHandlers on Windows Vista IIS 7 Integrated mode
and
Error: Web.config registration missing! The Telerik dialogs require a HttpHandler registration in the web.config file.
All the best,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Please, see the following KB articles on the topic:
Registering the HttpHandlers on Windows Vista IIS 7 Integrated mode
and
Error: Web.config registration missing! The Telerik dialogs require a HttpHandler registration in the web.config file.
All the best,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Sameh Awad
Top achievements
Rank 1
answered on 11 May 2008, 02:09 PM
thank you very much,
but my web server (where i want to deploy my application) is windows server 2003 with IIS 6,
So if I leave the HttpHandler registrations in the two places is it work? or i have to redevelope my application on another platform (XP or 2003 Server).
Thank you.
but my web server (where i want to deploy my application) is windows server 2003 with IIS 6,
So if I leave the HttpHandler registrations in the two places is it work? or i have to redevelope my application on another platform (XP or 2003 Server).
Thank you.
0
Hello Sameh,
If your server use IIS6 then you should register the HTTP handler only once, not in the two places.
Could you please, tell us whether the dialog content is loaded after the appearance of the Http handler missing registration warning message? If the content is not loaded please send us the error message that is displayed in the dialog.
The problem is most likely due to that some module, URL rewriter or other handler is corrupting the HttpHandler of the editor's dialogs.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
If your server use IIS6 then you should register the HTTP handler only once, not in the two places.
Could you please, tell us whether the dialog content is loaded after the appearance of the Http handler missing registration warning message? If the content is not loaded please send us the error message that is displayed in the dialog.
The problem is most likely due to that some module, URL rewriter or other handler is corrupting the HttpHandler of the editor's dialogs.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Sameh Awad
Top achievements
Rank 1
answered on 20 May 2008, 04:51 PM
thank you,
sorry for late,
the editor is working now and the content is loaded, but I meant that I am working now on windows vista & IIS 7 and the target machine (the hosting server on the internet where i want to deploye my site) is windows server 2003 with IIS 6,
what i have to do when i want to deploy my web site.
thank you.
sorry for late,
the editor is working now and the content is loaded, but I meant that I am working now on windows vista & IIS 7 and the target machine (the hosting server on the internet where i want to deploye my site) is windows server 2003 with IIS 6,
what i have to do when i want to deploy my web site.
thank you.
0
Hello Sameh,
In this case just register the RadControls handlers in both places that applies to IIS 5.x, 6.x and to IIS7 (integrated mode).
IIS 7 Integrated mode
IIS 5.x/6.x/7.x
For your convenience I have attached the web.config file used in the Telerik.Web.UI demo examples.
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
In this case just register the RadControls handlers in both places that applies to IIS 5.x, 6.x and to IIS7 (integrated mode).
IIS 7 Integrated mode
| <system.webServer> |
| <modules> |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler" /> |
| ................................... |
| </modules> |
| <handlers> |
| <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0" /> |
| <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0" /> |
| <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode,runtimeVersionv2.0" /> |
| <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0" /> |
| <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0" /> |
| </handlers> |
| <validation validateIntegratedModeConfiguration="false" /> |
| </system.webServer> |
IIS 5.x/6.x/7.x
| <httpHandlers> |
| <remove verb="*" path="*.asmx" /> |
| ................... |
| <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" /> |
| <add verb="*" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
| <add verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
| <add verb="*" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" /> |
| <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false" /> |
| </httpHandlers> |
| <httpModules> |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> |
| ... |
| </httpModules> |
For your convenience I have attached the web.config file used in the Telerik.Web.UI demo examples.
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
