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

Editor Dialogs working on IIS7 but not IIS6

2 Answers 94 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Nicholas
Top achievements
Rank 1
Nicholas asked on 08 Jul 2009, 10:14 AM
Hi

I have the editor dialogs working on my development machine (Vista IIS7) but when I upload to the server, they are not working.  I get the following error:

Message: Object doesn't support this property or method
Line: 43
Char: 1
Code: 0
URI: http://test.????????.com/ScriptResource.axd?d=DU7g_wQW-tV4QeYVS_gLgXVZWW4ZL1dor0p0F187gm0dTShmzT1Tg48JMZlQmbcDDDHOCI-vFteYTWW3sq2Gop3r18kl4qiXBqPHwa-0sO41&t=633809219809160434

Message: Sys.ArgumentException:  does not derive from Sys.Component.
Parameter name: type
Line: 2825
Char: 9
Code: 0
URI: http://test.??????.com/ScriptResource.axd?d=Wf_E1GAoeCAIHDwB-ecqg0WluaIxXOle_VN2t1P7HMlFD-382Wz2QXMd88hEqBg_0&t=633790231336249871

Here is my web.config.  I can't see what is wrong with it - any ideas.

<?xml version="1.0" encoding="utf-8"?>  
<configuration> 
  <configSections> 
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">  
      <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">  
        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> 
        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">  
          <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" /> 
          <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> 
          <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> 
        </sectionGroup> 
      </sectionGroup> 
    </sectionGroup> 
  </configSections> 
  <system.web> 
    <pages> 
      <controls> 
        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>  
      </controls> 
    </pages> 
    <compilation debug="true">  
      <assemblies> 
        <add assembly="Eco.Handles, Version=4.0.0.0, Culture=neutral, PublicKeyToken=46a833be9e90de8c" /> 
        <add assembly="Eco.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=46a833be9e90de8c" /> 
        <add assembly="Eco.Persistence, Version=4.0.0.0, Culture=neutral, PublicKeyToken=46a833be9e90de8c" /> 
        <add assembly="Eco.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=46a833be9e90de8c" /> 
        <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>  
      </assemblies> 
    </compilation> 
 
    <customErrors mode="Off">  
    </customErrors> 
 
    <authorization> 
      <allow users="*" /> 
    </authorization> 
 
    <authentication mode="Forms">  
      <forms loginUrl="~/CMS/Login.aspx" name=".ASPXFORMSAUTH" /> 
    </authentication> 
 
    <membership defaultProvider="EcoMembershipProvider" userIsOnlineTimeWindow="15">  
      <providers> 
        <clear /> 
        <add name="EcoMembershipProvider" type="EcoCMS.Providers.EcoMembershipProvider" EcoSpaceTypeName="EcoCMS.EcoCMSEcoSpace" enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="true" requiresUniqueEmail="true" passwordFormat="Clear" /> 
      </providers> 
    </membership> 
 
    <roleManager cacheRolesInCookie="true" cookieName="MyRoles" cookiePath="/" cookieProtection="None" cookieRequireSSL="false " cookieSlidingExpiration="true" cookieTimeout="30" createPersistentCookie="true" defaultProvider="EcoRoleProvider" domain="test.com" enabled="true" maxCachedResults="100">  
      <providers> 
        <clear /> 
        <add name="EcoRoleProvider" type="EcoCMS.Providers.EcoRoleProvider" EcoSpaceTypeName="EcoCMS.EcoCMSEcoSpace" /> 
      </providers> 
    </roleManager> 
 
    <profile defaultProvider="EcoProfileProvider">  
      <properties> 
      </properties> 
      <providers> 
        <clear /> 
        <add name="EcoProfileProvider" type="EcoCMS.Providers.EcoProfileProvider" EcoSpaceTypeName="EcoCMS.EcoCMSEcoSpace" /> 
      </providers> 
    </profile> 
 
    <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" /> 
 
    <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="20" /> 
 
    <globalization requestEncoding="utf-8" responseEncoding="utf-8" /> 
      
    <httpHandlers> 
      <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"/>  
      <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" /> 
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> 
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*"/>  
      <add path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" /> 
    </httpHandlers> 
    <httpModules> 
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>  
      <add name="CMSUrlRewriter" type="EcoCMS.Pages.CMSUrlRewriter, EcoCMS.Pages" /> 
    </httpModules> 
      
    <trust level="Full" originUrl="" /> 
  </system.web> 
 
  <location path="CMS">  
    <system.web> 
      <authorization> 
        <deny users="?" /> 
      </authorization> 
    </system.web> 
  </location> 
 
  <appSettings> 
    <add key="Eco.Web.MaxPool" value="0" /> 
    <add key="Eco.Web.MaxAge" value="600" /> 
    <add key="EcoAspProvider.EcoSpaceTypeName" value="EcoCMS.EcoCMSEcoSpace" /> 
  </appSettings> 
 
  <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <modules> 
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
    </modules> 
    <handlers> 
      <add name="CMSWildCard" path="*.aspx" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv2.0,bitness64" /> 
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
      <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2008.3.1125.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> 
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /> 
      <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" /> 
      <add name="Telerik_Web_UI_DialogHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" /> 
    </handlers> 
  </system.webServer> 
 
</configuration> 

Any ideas - thoughts.

Thanks

Nick

2 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 13 Jul 2009, 12:58 PM
Hi Nick,

Could you please upgrade your project to the latest Q2 2009 version of RadControls for ASP.NET AJAX and see whether the error still persists? I think that this is a known issue with the editor dialogs back when IE 8 was in beta and that it was fixed in the next editor update.

If you still experience the issue, please open a support ticket and send a fully working project that demonstrates it. I will examine it and provide a solution after reproducing the problem on my end.

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Nicholas
Top achievements
Rank 1
answered on 13 Jul 2009, 01:54 PM
Hi

Thanks for the reply.

Unfortunatly I am unable to try this at the moment as my subscription has expired and the latest I have is Q3 2008.

I will be looking to renew in a couple of months once the current projects I'm working on have been completed.

In the meantime I will get them to use another browser.

Regards

Nick

Tags
Editor
Asked by
Nicholas
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Nicholas
Top achievements
Rank 1
Share this question
or