Can't PUT to my IHttpHandler, GET works fine
问题 I'm in the process of writing an IHttpHandler. My environment is Windows 7 Enterprise, IIS 7 (it appears). My handler is running as an application under the default app pool which is running in integrated mode. Currently my handler's ProcessRequest() method only does the following (just testing at this point): public void ProcessRequest(HttpContext context) { context.Response.StatusCode = 200; context.Response.ContentType = "text/html"; context.Response.Output.Write("file uploaded."); } I add