Here is my setup:
- an iis website with 1 application called fifthplay.fifthcore.uploadserver
- there is only 1 browesable file called uploadhandler.ashx
- all default documents are deleted and only uploadhandler.ashx is left as default document.
- all verbs are allowed for the *.ashx extension
- the website is only accessible through basic authentication.
We have some client software that is connecting to the web server with basic authentication and using HTTP POST
My problem is when I try to connect to http://localhost/fifthplay.fifthcore.uploadserver with the client software I get a 405 Error. However when I connect directly to the http://localhost/fifthplay.fifthcore.uploadserver/uploadhandler.ashx page it works as expected.
I've put FailedRequestTrace file online at http://suddenelfilio.info:8081/trace/fr000013.xml where you can see what happens.
Any thoughts on how to solve this so I don't need to supply the uploadhandler.ashx in the url?