I have an SharePoint 2010 Application Page that is using the RadAsyncUpload (2012.2.607.35) with a CustomHttpHandler. The CustomHandler is in a subfolder to the folder that houses the Application Page (ex: _layouts/Form/AppPage.aspx and _layouts/Form/CustomHttpHandler/Handler.ashx).
For whatever reason, the file uploads are working when I do them in IE but are failing with a 403 Forbidden error in Firefox. To implement the custom handler:
1) I set the "HttpHandlerUrl" attribute of the RadAsyncUpload to point to "~/_layouts/Form/CustomHttpHandler/Handler.ashx"
2) I added
<location path="_layouts/Form/CustomHttpHandler/Handler.ashx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
to the SharePoint web.config.
If I remove the HttpHandlerUrl attribute (so that files are sent to the temp folder location instead), the RadAsyncUpload works in both IE and Firefox with no problems so I know this has something to do with a configuration step for using a custom http handler that I'm missing.
Thank you in advance for any help you can provide!
For whatever reason, the file uploads are working when I do them in IE but are failing with a 403 Forbidden error in Firefox. To implement the custom handler:
1) I set the "HttpHandlerUrl" attribute of the RadAsyncUpload to point to "~/_layouts/Form/CustomHttpHandler/Handler.ashx"
2) I added
<location path="_layouts/Form/CustomHttpHandler/Handler.ashx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
to the SharePoint web.config.
If I remove the HttpHandlerUrl attribute (so that files are sent to the temp folder location instead), the RadAsyncUpload works in both IE and Firefox with no problems so I know this has something to do with a configuration step for using a custom http handler that I'm missing.
Thank you in advance for any help you can provide!