Pages

Tuesday, May 21, 2013

405 method not allowed web api (PUT & DELETE)

Just add these lines to the web.config:

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

No comments:

Post a Comment