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

RadEditor and spellcheck 100% from code?

2 Answers 33 Views
Editor
This is a migrated thread and some comments may be shown as answers.
scott
Top achievements
Rank 1
scott asked on 03 Feb 2014, 08:11 PM
Hi folks.  I get the web.config registration missing error when I click on the spell check button. 

I've got my language file in my app_data\RadSpell folder.

Can somebody tell me what else I need to do, in order to make spell check work?

My web.config httphandlers section:

    <httpHandlers>
      <remove verb="*" path="*.asmx"/>
      <add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" />
      <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
    </httpHandlers>

My code:

            this.ToolsFile = "~/ToolsFile.xml";
            this.CssFiles.Add("~/RadEditor.css");
            this.Height = 200;
            this.Width = 600;

Thanks

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 05 Feb 2014, 12:27 PM
Hi Scott,

What is the server you are deploying to? The httpHandlers collection is used up to  IIS7 so for newer IIS versions you need the handlers collection under system.webServer.
I am attaching here a simple web.config that shows the correct handlers for our software. Please try them instead and see how this goes.


Regards,
Marin Bratanov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the UI for ASP.NET AJAX, subscribe to the blog feed now.
0
scott
Top achievements
Rank 1
answered on 05 Feb 2014, 08:16 PM
Hi Marin.  I copied the stuff from your web.config and it works great!

Thank you -
Scott
Tags
Editor
Asked by
scott
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
scott
Top achievements
Rank 1
Share this question
or