HTTP Error 405.0 - Method Not Allowed in IIS Express
When issuing a perfectly cromulent verb to a local IIS Express web-site under Visual Studio 2013: CROMULENT http://localhost:7579/Handler.ashx HTTP/1.1 Host: localhost:7579 the server responds with the error: HTTP/1.1 405 Method Not Allowed Allow: GET, HEAD, OPTIONS, TRACE That is a request to a "generic handler" (i.e. .ashx ) . If if i try again to a static resource: SCHWIFTY http://localhost:7579/Default.htm HTTP/1.1 Host: localhost:7579 the server responds with the error: HTTP/1.1 405 Method Not Allowed Allow: GET, HEAD, OPTIONS, TRACE This is all by way to trying to use HTTP verbs: DELETE