We have deployed our service on the server (IIS server), but the PUT API is not working when we try to hit it. Rest all the APIs works. We have added code to the web.config file, but we are still facing the same issue. here is the code;
<system.webServer>
<modules runAllManagedModulesForAllRequests="false">
<removename="WebDAVModule"/>
</modules>
</system.webServer>
We have also double-checked our endpoint and confirmed that we are using the HTTP PUT method. What are we missing here?