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
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3172 times since Tue, May 1, 2012
How do I query MySQL Database in PHP ?
Viewed 3635 times since Tue, May 1, 2012
I am unable to renew my Let’s Encrypt SSL
Viewed 2768 times since Thu, Aug 23, 2018
How do I redirect a subdomain to a subdirectory?
Viewed 4325 times since Tue, May 1, 2012
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6792 times since Tue, May 1, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9883 times since Mon, Jul 17, 2017
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3858 times since Thu, May 3, 2012