404 Not Found for a few resources requests

  1. #1

    404 Not Found for a few resources requests

    Within a normal request, 4 out of 6 of the ext.axd requests are getting 404 from the ext resource handler:

    404:
    /extjs/ext-all-js/ext.axd?v=37522
    /extnet/extnet-core-js/ext.axd?v=37522
    /extjs/ext-all-js/ext.axd?v=37522
    /extnet/extnet-core-js/ext.axd?v=37522
    
    200:
    /extjs/resources/css/ext-all-embedded-css/ext.axd?v=37522
    /extjs/adapter/ext/ext-base-js/ext.axd?v=37522
    Server: IIS 7
    web.config sections:

    <configSections>
        <section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false" />
      </configSections>
    
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
        <modules runAllManagedModulesForAllRequests="true">
          <add name="DirectRequestModule" preCondition="managedHandler" type="Ext.Net.DirectRequestModule, Ext.Net" />
        </modules>
        <handlers>
          <add name="DirectRequestHandler" verb="*" path="*/ext.axd" preCondition="integratedMode" type="Ext.Net.ResourceHandler" />
        </handlers>
      </system.webServer>
    This is preventing us continuing development, it would be great if one of you could investigate this issue.

    Thanks a lot

    Camilo
    Last edited by geoffrey.mcgill; Feb 09, 2011 at 7:54 PM. Reason: please use [CODE] tags
  2. #2
    Hi,

    Try to set CleanRequestUrl="false" for ResourceManager. Does it change something?
  3. #3
    Quote Originally Posted by Vladimir View Post
    Hi,

    Try to set CleanRequestUrl="false" for ResourceManager. Does it change something?
    Do you have an example on where to set the CleanRequestUrl?
  4. #4
    Quote Originally Posted by orozcoc View Post
    Do you have an example on where to set the CleanRequestUrl?
    It is a property of the ResourceManager.
    Geoffrey McGill
    Founder
  5. #5
    Quote Originally Posted by geoffrey.mcgill View Post
    It is a property of the ResourceManager.
    Thanks a lot guys, this worked:

    <ext:ResourceManager ID="ResourceManager1" runat="server" CleanResourceUrl="false" />
    Last edited by geoffrey.mcgill; Feb 09, 2011 at 8:26 PM. Reason: please use [CODE] tags

Similar Threads

  1. [CLOSED] How to make two autoload requests asynchrounous ?
    By Daly_AF in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 09, 2012, 10:14 AM
  2. [CLOSED] Store and multiple requests
    By drgw74 in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: May 27, 2011, 3:18 PM
  3. [CLOSED] [1.0] Repeated JavaScript resources requests problem
    By webclouder in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Jan 14, 2011, 4:47 PM
  4. Replies: 2
    Last Post: Jun 30, 2009, 4:03 PM

Tags for this Thread

Posting Permissions