Link to home
Start Free TrialLog in
Avatar of RUSVMIT
RUSVMIT

asked on

No http handler was found for request type 'GET'

Receiving this application error on a legacy asp application that is no longer supported by the vendor due to buy out.... need some assistance resolving.


No http handler was found for request type 'GET'

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: No http handler was found for request type 'GET'

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[HttpException (0x80004005): No http handler was found for request type 'GET']
   System.Web.HttpApplication.MapIntegratedHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig, Boolean convertNativeStaticFileModule) +824
   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean preserveForm) +435

[HttpException (0x80004005): Error executing child request for ErrorPage.aspx.]
   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean preserveForm) +784
   System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm) +57
   System.Web.HttpServerUtility.Transfer(String path) +35
   MRM.BusinessLogicLayer.MRMGlobal.GetLicenseInfo() +1411
   MRM.BusinessLogicLayer.MRMGlobal.get_License(Boolean force) +168
   MRM.Pages._default.Page_Load(Object sender, EventArgs e) +41
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +50
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627

Version Information: Microsoft .NET Framework Version:2.0.50727.5472; ASP.NET Version:2.0.50727.5456
Avatar of Jerry Miller
Jerry Miller
Flag of United States of America image

Check your web.config file in the root of the website. There should be an entry similar to the one below in your httpHandlers section.

<add verb="GET,HEAD" path="ScriptResource.axd" validate="false" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

If this line exists, look to verify that the ScriptResource.axd exists.
Avatar of RUSVMIT
RUSVMIT

ASKER

if this does not exist in the web.config file what it the next step.
ASKER CERTIFIED SOLUTION
Avatar of Jerry Miller
Jerry Miller
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial