Hi guys,
I have read a few posts regarding this issue, however, there really isn't much information available.
I'm currently working on a site within IIS7 using a modified version of urlrewriter.net's control.
The differences mainly are that mine does not run at the BeginRequest of the HttpApplication pipeline, but rather the AuthorizeRequest. This is done because mine is geared towards developers who would like to make use of ASP.NET forms authentication and membership/roles and offers rewriting conditionals for both. Mine also contains an event PreRequestHandlerExecute() which sets a handler for the current Page's Page_Init event. There is rewrites the url again so that the Form.Action is properly set automatically.
The problem is that RadProgressArea won't display when the UrlRewriter is running. I am able to upload though. I don't expect Telerik to really look deeply into this since it's not their problem per say, but I was hoping I could get some information as to how the RadUploadHttpModule works and how it's effected by rewriting.
I've seen another post describing to add a new re-writing rule for Telerik.RadUploadProgressHandler.ashx
like so:
<rewrite url="^.*Telerik.RadUploadProgressHandler.ashx(.*)$" to="~/Telerik.RadUploadProgressHandler.ashx$1" />
But this is not the problem with my rewriter. The website correctly finds the handler as I can see in FireBug:
www.sitename.com/Telerik.RadUploadProgressHandler.ashx?RadUrid=93c3f63d-7407-4182-adc1-287dca70b614&RadUploadTimeStamp=1237462402048&
However, it's response is always:
var rawProgressData = {InProgress:false,ProgressCounters:false};
Is there anyone who can elaborate as to what might cause this. How the RadUploadHttpModule works exactly.
And if possible, what I should look for?
I have read a few posts regarding this issue, however, there really isn't much information available.
I'm currently working on a site within IIS7 using a modified version of urlrewriter.net's control.
The differences mainly are that mine does not run at the BeginRequest of the HttpApplication pipeline, but rather the AuthorizeRequest. This is done because mine is geared towards developers who would like to make use of ASP.NET forms authentication and membership/roles and offers rewriting conditionals for both. Mine also contains an event PreRequestHandlerExecute() which sets a handler for the current Page's Page_Init event. There is rewrites the url again so that the Form.Action is properly set automatically.
The problem is that RadProgressArea won't display when the UrlRewriter is running. I am able to upload though. I don't expect Telerik to really look deeply into this since it's not their problem per say, but I was hoping I could get some information as to how the RadUploadHttpModule works and how it's effected by rewriting.
I've seen another post describing to add a new re-writing rule for Telerik.RadUploadProgressHandler.ashx
like so:
<rewrite url="^.*Telerik.RadUploadProgressHandler.ashx(.*)$" to="~/Telerik.RadUploadProgressHandler.ashx$1" />
But this is not the problem with my rewriter. The website correctly finds the handler as I can see in FireBug:
www.sitename.com/Telerik.RadUploadProgressHandler.ashx?RadUrid=93c3f63d-7407-4182-adc1-287dca70b614&RadUploadTimeStamp=1237462402048&
However, it's response is always:
var rawProgressData = {InProgress:false,ProgressCounters:false};
Is there anyone who can elaborate as to what might cause this. How the RadUploadHttpModule works exactly.
And if possible, what I should look for?