Yes, I tried to remove both the httpModules and the httpHandlers - despite adding this to the web.config, they still loaded.
here's the web.config section
<location path="videoUploader">
<system.web>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<remove verb="GET" path="ScriptResource.axd" />
</httpHandlers>
<httpModules>
<remove name="WebResourceCompression" />
<remove name="ScriptModule" />
<add name="HttpUploadModule" type="Netvak.ControlSolutions.CSUpload.HttpUploadModule, ControlSolutions.CSUpload"/>
</httpModules>|
</system.web>
</location>