I'm currently using the MediaChase FileUploader control and I'm working on adding another FileUpload component to my project so I need to use filters to allow calls to that component to go through untouched. However I seem to be having some trouble doing so. Here's what my fileUploaderContext element looks like:
<fileUploaderContext httpPostMaxSize="10240" httpPostBufferSize="65536">
<filters>
<add type="Deny" requestPath="*" />
</filters>
</fileUploaderContext>
Originally I tried just blocking a specific path ("*/OtherUploader.axd"), but that didn't seem to work so I changed it to block everything ("*") to see if uploads would still work, which they do, so I can only assume that I'm doing something completely wrong. Any help would be appreciated. Thanks!