problem with "ext is undefined" on iis7 server

  1. #1

    problem with "ext is undefined" on iis7 server

    I'm trying to run a web site that runs on my local iis7 (vista) but does not run on a hosted iis7 server. I thought it had something to do with my <system.webServer> section. I'm pasting what I have below in the hopes that is what is causing the issue.

    
    
    
    <system.webServer>
    
    
    <validation validateIntegratedModeConfiguration="false"/>
    
    
    <modules>
    
    
    <remove name="ScriptModule"/>
    
    
    <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    
    
    <add name="WebPageSecurity" type="Ventaur.Web.Security.SecureWebPageModule,
    
    
    WebPageSecurity" preCondition="managedHandler" />
    
    
    <add name="AjaxRequestModule" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" />
    
    
    </modules>
    
    
    <handlers>
    
    
    <remove name="WebServiceHandlerFactory-Integrated"/>
    
    
    <remove name="ScriptHandlerFactory"/>
    
    
    <remove name="ScriptHandlerFactoryAppServices"/>
    
    
    <remove name="ScriptResource"/>
    
    
    <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    
    
    <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.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=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    
    
    <add name="CooliteHandler" path="*/coolite.axd" verb="*" type="Coolite.Ext.Web.ResourceManager" />
    
    
    </handlers>
    
    
    </system.webServer>
  2. #2

    RE: problem with "ext is undefined" on iis7 server

    Set application pool to Classic.Net instead of Integrated mode for that particular web app. Same thing I did on my Win2k8. Works well.

    Thanks,


  3. #3

    RE: problem with "ext is undefined" on iis7 server

    having the hosting company set the mode of the web site to "Integrated Mode" solved the problem. I have a post I did a while back for another Host (MOSSO) that I had a similar problem with.

    http://peterkellner.net/2008/09/06/i...-mode-webfarm/

    Problem Solved.

Similar Threads

  1. Ext.Net + Win2k8 x64 + IIS7
    By wdk in forum 1.x Help
    Replies: 22
    Last Post: Sep 22, 2011, 2:31 AM
  2. Session problem on IIS7
    By ven in forum 1.x Help
    Replies: 5
    Last Post: Jun 24, 2011, 3:33 PM
  3. [CLOSED] [1.0] ImageButton - 'Undefined' Request to Server
    By rcaunt in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Mar 23, 2011, 10:49 AM
  4. [CLOSED] Problem: getting control undefined
    By BGeorge in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Oct 08, 2009, 6:41 PM
  5. [CLOSED] On hosting in IIS7.0 i get ext is undefined....
    By speedstepmem2 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 08, 2009, 1:59 AM

Posting Permissions