0

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.

Jose Capistrano
  • 693
  • 1
  • 8
  • 20

1 Answers1

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.

  • 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