I am working on a Filetransfer Controller based on the new Web API. I want to upload, download and delete files, these actions should be triggered through POST, GET and DELETE Verbs against one single method.
However I don't get DELETE requests to work, it always returns a 404. As a workaround, I added a second Delete method with verb POST; though this feels ugly.