P
PJ6
I have this little tidbit in system.web in my web.config file, to allow
the handling of requests ending in ".res":
<httpHandlers>
<remove verb="*" path="*.res"/>
<add verb="*" path="*.res" type="DEVTEST.Resources+HttpHandler"
validate="false"/>
</httpHandlers>
This works fine on my development machine, but when I put the project on
another box for testing ".res" requests are ignored completely (404). I
poked around in the Home Directory configuration in IIS, and it appears I
need to add the extention to Mappings... I went ahead and manually
specified the dll in the bin directory of the project and now get a 403,
access denied.
How do I get this to work? And why do I have to specify handler information
twice, once in the web.config, and on deployment, apparently also in another
place?
Paul
the handling of requests ending in ".res":
<httpHandlers>
<remove verb="*" path="*.res"/>
<add verb="*" path="*.res" type="DEVTEST.Resources+HttpHandler"
validate="false"/>
</httpHandlers>
This works fine on my development machine, but when I put the project on
another box for testing ".res" requests are ignored completely (404). I
poked around in the Home Directory configuration in IIS, and it appears I
need to add the extention to Mappings... I went ahead and manually
specified the dll in the bin directory of the project and now get a 403,
access denied.
How do I get this to work? And why do I have to specify handler information
twice, once in the web.config, and on deployment, apparently also in another
place?
Paul