Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Http-handler load error

I successfully added and configured HttpHandler in an Asp.Net WebApplication, but facing problems while trying to add same HttpHandler to Asp.Net WebSite. I have registered it in the web.config, am i missing something

This is the error I am getting

 Configuration Error

    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

    Parser Error Message: Could not load type 'MyHandler'.

    Line 98:     </pages>
    Line 99:     <httpHandlers>
    Line 100:      <add verb="*" path="*.result" type="MyHandler"/>
    Line 101:      <remove verb="*" path="*.asmx"/>

Here is handler

public class MyHandler: IHttpHandler
{
    #region IHttpHandler Members

    public bool IsReusable
    {
        get { return true; }
    }

    public void ProcessRequest(HttpContext context)
    {
    }
    #endregion
}

NOTE: I have not made any request for the handler via url, it is just not letting me run application.

Thanks

like image 942
Asad Avatar asked Feb 27 '23 16:02

Asad


1 Answers

Edit: I missed the WebSite at first:

Put the .cs in App_code and use this:

<add verb="*" path="*.result" type="MyHandler, App_Code"/>
like image 120
Nick Craver Avatar answered Mar 10 '23 23:03

Nick Craver