Hi,
I'm using RadAsyncUpload control. I'm using forms authentication in application.
When I log in and upload bigger pdf file(92 MB) it works but when i run a page which is used for guest users(user is not authenticated in this case). The same file does not upload there and throws error as below.(Files with less size like 3MB or 5 MB are getting uploaded on guest page without authentication ).
"NetworkError: 404 Not Found - http://MySite/Telerik.Web.UI.WebResource.axd?type=rau"
uncaught exception: Error while uploading, HTTP Error code is: 404
-------
Once I log in and upload, that works. But when I upload file from guest page which doesn't require authentication, I'm getting error.(I've used Form Authentication in my application)
I have added following in Web.Config already.
<location path="Telerik.Web.UI.WebResourceSession.axd">
<system.web>
<authorization>
<allow users="*" />
</authorization>
<authentication mode="None" />
</system.web>
</location>
<location path="Telerik.Web.UI.WebResource.axd">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
I've also followed instructions mentioned in below URLs but still the error occurs.
http://www.telerik.com/forums/radupload-ajax-callback
http://www.telerik.com/forums/radupload-with-forms-authentication
Please find attached screenshot. You can see that upload progress reaches to 100% and then throwing 404 error for handler.
Is this issue is related to form authentication?
Please guide./
Thanks,
Vinay