c# - AJAX not working when deploying to server - works ok on local machine -


my ajax application works fine on local machine....but when deployed server page flickers one, chrome reports error on client failed load resource: server responded status of 404 scriptresource.axd - 404 asp.net ajax client-side framework failed load. sys not defined.

i have searched many posts resource , others , tried many different things handler mappings, seem have hit dead end.

i can confirm system.web.extensions installed on 2008 iis 7.5 server running asp.net v4, , reference in c# project...here web config file think problem may in here....

 <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">                     <sectiongroup name="webservices" type="system.web.configuration.scriptingwebservicessectiongroup,              system.web.extensions, version=1.0.61025.0,              culture=neutral, publickeytoken=31bf3856ad364e35">                         </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="system.web.extensions, version=1.0.61025.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>             </assemblies         </compilation>         <httphandlers>             <remove verb="*" path="*.asmx"/>             <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>         <httpmodules>             <add name="scriptmodule" type="system.web.handlers.scriptmodule, system.web.extensions, version=1.0.61025.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         </httpmodules>     </system.web>   <appsettings>     <add key="redirecturl" value="https://xxxx.xxxxxxxxx.co.uk/"/>   </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>                 <remove name="webservicehandlerfactory-isapi-2.0"/>                 <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"/>             </handlers>             <defaultdocument>                 <files>                     <clear/>                     <add value="filelist.aspx"/>                 </files>             </defaultdocument>         </system.webserver>      </configuration> 


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -