Here’s the final web.config section. The thing I needed to add I was missing was changing the staticFileHandler from using “all verbs” to all of them spelled out. <?xml version=”1.0″ encoding=”utf-8″?> <configuration> <appSettings> <add key=”StorageRoot” value=”C:\temp\”/> </appSettings> <system.web> <compilation debug=”true” targetFramework=”4.0″ /> <httpRuntime maxRequestLength=”2147480000″ executionTimeout=”3600″/> <pages controlRenderingCompatibilityVersion=”3.5″ clientIDMode=”AutoID”/> </system.web> <system.webServer> <modules> <remove name=”WebDAVModule” /> </modules> …
HTTP Error 405.0 – Method Not Allowed error while trying to make a DELETE request to a .ashx
