I am trying to implement a file handler for my web service. I can't even figure out how to grant everyone access to a specific folder. I'm trying to use location in my web.config to allow all through, but that does not even work. It always prompts me
for a login when trying to access an image file in the specific folder (just testing via entering full path in the url). When connecting via my Android App, even after login I get a permission denied error trying to access an image directly. Any ideas?
Here is my web.config:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="false" strict="false" explicit="true" targetFramework="4.5"/>
<customErrors mode="Off"/>
<authentication mode="None"/>
<sessionState timeout="120"/>
<membership defaultProvider ...
Go to the complete details ...