DEV Community

Cover image for Error 405 : ASP.NET Core Web API PUT and DELETE Methods not allowed
Sandeep Kumar
Sandeep Kumar

Posted on • Edited on

15 1

Error 405 : ASP.NET Core Web API PUT and DELETE Methods not allowed

Reason:

The WebDAVModule set PUT and DELETE request methods disabled by default and due to that PUT and DELETE throw 405 errors.

Solution:

To make the PUT and DELETE requests work, we need to override the WebDAVModule setting in web.config file by adding the below settings under the system.webServer.

<system.webServer>
  <modules runAllManagedModulesForAllRequests="false">
    <remove name="WebDAVModule" />
  </modules>
</system.webServer>
Enter fullscreen mode Exit fullscreen mode

There may be 2 web.config files in your project, if that is the case then update the one that is inside the wwwroot folder.

Also with the latest version of .Net CORE (2.0 and above), there might be a case of no web.config file available at all, if that is your case then add a web.config file on your own.

Note:

If you are facing the same issue with multiple APIs hosted on the same server, then either you can add the above entries under web.config file of all the affected API’s or you can remove the below entry of WebDAVModule from ApplicationHost.config file under the module section:

<add name="WebDAVModule" />
Enter fullscreen mode Exit fullscreen mode

ApplicationHost.config can be found at

C:\Windows\System32\inetsrv\config

Hope that helps !!!


Originally published at http://diary-techies.blogspot.com on
January 07, 2019.

API Trace View

How I Cut 22.3 Seconds Off an API Call with Sentry

Struggling with slow API calls? Dan Mindru walks through how he used Sentry's new Trace View feature to shave off 22.3 seconds from an API call.

Get a practical walkthrough of how to identify bottlenecks, split tasks into multiple parallel tasks, identify slow AI model calls, and more.

Read more →

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay