Home » Categories » Multiple Categories

How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?

This applies to anyone who uses REST service using ASP.NET Web API. When you try to send HttpDelete and HttpPut Request, you can occassionally see this error message:

405 - HTTP verb used to access this page is not allowed

To resolve this issue, you just need to add several lines on your code:

<system.webServer>  <modules>    <remove name="WebDAVModule" />  </modules>  <handlers>    <remove name="WebDAV" />  </handlers></system.webServer>

Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Sample Code to Send email using ASP.NET 2
Viewed 9928 times since Tue, May 1, 2012
How do I redirect a subdomain to a subdirectory?
Viewed 4264 times since Tue, May 1, 2012
About Azure Key Vault
Viewed 1989 times since Mon, Nov 2, 2020
How do I query MySQL Database in PHP ?
Viewed 3596 times since Tue, May 1, 2012
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9706 times since Tue, Apr 2, 2013
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3134 times since Tue, May 1, 2012
I cannot see my website. What should I do?
Viewed 4012 times since Thu, May 3, 2012