Search This Blog

Monday, June 13, 2016

How to enable PUT and DELETE http methods in Web API?

Add below setting in web.config inside <system.webServer> tag to enable PUT and DELETE HTTP methods in web api.


<modules runAllManagedModulesForAllRequests="true">
          <remove name="WebDAVModule"/>
</modules>

No comments:

Post a Comment