Deploying an HttpHandler web service

Posted by baron on Stack Overflow See other posts from Stack Overflow or by baron
Published on 2010-05-20T05:36:42Z Indexed on 2010/05/21 4:30 UTC
Read the original article Hit count: 567

I am trying to build a webservice that manipulates http requests POST and GET.

Here is a sample:

public class CodebookHttpHandler: IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        if (context.Request.HttpMethod == "POST")
        {
            //DoHttpPostLogic();
        }
        else if (context.Request.HttpMethod == "GET")
        {
            //DoHttpGetLogic();
        }
    }
...

public void DoHttpPostLogic()
{
...
}
public void DoHttpGetLogic()
{
...
}

I need to deploy this but I am struggling how to start. Most online references show making a website, but really, all I want to do is respond when an HttpPost is sent. I don't know what to put in the website, just want that code to run.

Edit: I am following this site as its exactly what I'm trying to do.

I have the website set up, I have the code for the handler in a .cs file, i have edited the web.config to add the handler for the file extension I need. Now I am at the step 3 where you tell IIS about this extension and map it to ASP.NET. Also I am using IIS 7 so interface is slightly different than the screenshots. This is the problem I have:

1) Go to website
2) Go to handler mappings
3) Go Add Script Map
4) request path - put the extension I want to handle 
5) Executable-  it seems i am told to set aspnet_isapi.dll here. Maybe this is incorrect?
6) Give name
7) Hit OK button:

Add Script Map

Do you want to allow this ISAPI extension? Click "Yes" to add the extension with an "Allowed" entry to the ISAPI and CGI Restrictions list or to update an existing extension entry to "Allowed" in the ISAPI and CGI Restrictions list.

Yes No Cancel


8) Hit Yes

Add Script Map

The specified module required by this handler is not in the modules list. If you are adding a script map handler mapping, the IsapiModule or the CgiModule must be in the modules list.

OK


edit 2: Have just figured out that that managed handler had something to do with handlers witten in managed code, script map was to help configuring an executable and module mapping to work with http Modules. So I should be using option 1 - Add Managed Handler.

See:

http://yfrog.com/11managedhandlerp

I know what my request path is for the file extension... and I know name (can call it whatever I like), so it must be the Type field I am struggling with. In the applications folder (in IIS) so far I just have the MyHandler.cs and web.config (Of course also a file with the extension I am trying to create the handler for!)

edit3: progress

So now I have the code and the web.config set up I test to see If I can browse to the filename.CustomExtension file:

HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

So in IIS7 I go to Handler Mappings and add it in. See this MSDN example, it is exactly what I am trying to follow

The class looks like this:

using System.Web;

namespace HandlerAttempt2
{
    public class MyHandler : IHttpHandler
    {
        public MyHandler()
        {
            //TODO: Add constructor logic here
        }

        public void ProcessRequest(HttpContext context)
        {
            var objResponse = context.Response;
            objResponse.Write("<html><body><h1>It just worked");
            objResponse.Write("</body></html>");
        }

        public bool IsReusable
        {
            get
            {
                return true;
            }
        }

    }
}

I add the Handler in as follows:

Request path: *.whatever Type: MyHandler (class name - this appears correct as per example!) Name: whatever

Try to browse to the custom file again (this is in app pool as Integrated):

HTTP Error 500.21 - Internal Server Error Handler "whatever" has a bad module "ManagedPipelineHandler" in its module list

Try to browse to the custom file again (this is in app pool as CLASSIC):

HTTP Error 404.17 - Not Found The requested content appears to be script and will not be served by the static file handler.

© Stack Overflow or respective owner

Related posts about webservice

Related posts about httphandler