I am using ASP.NET MVC 5.1 and Backload 1.9.3 and I am getting 404 in /Backload/UploadHandler
. I have referenced the assembly but seems it is not being loaded.
Asked
Active
Viewed 274 times
0

Jose Capistrano
- 693
- 1
- 8
- 20
1 Answers
1
I had a similar problem with Backload recently and the problem ended up being with WebDAV intercepting requests that were intended for Backload. Removing WebDAV in the web.config file worked for me. I followed these instructions: http://bradkingsley.com/putpostdelete-verb-errors-on-site/
Hope this helps.

onetimekickit
- 31
- 2
-
This is the correct answer. The problem has nothing to do with MVC 5.1. It's a WebDAV issue. The examples on GitHub also disable WebDAV. – helgans Dec 01 '15 at 15:01