- Published on
DELETE Verb not working with WebApi and IIS
- Authors
- Name
- Christopher Schleiden
- @cschleiden
Recently I've had a problem where a deployed WebApi service did not accept the DELETE
verb (locally, using IISExpress it worked). The solution was to remove the WebDAV module and handler for the specific site. So extend the web.config of the WebApi project with:
<system.webServer>
<modules>
<remove name="WebDAVModule" />
</modules>
<handlers>
<remove name="WebDAV" />
</handlers>
</system.webServer>
Then it worked just fine.