This is a migrated thread and some comments may be shown as answers.

IIS7 and RadProgressManager

2 Answers 119 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Oliver
Top achievements
Rank 1
Oliver asked on 08 May 2008, 02:49 PM
Hello everybodey,

I do run a simple Application in order to upload a file and save it to a particular destinatin.

I am using the RadUpload control combined with the RadProgressManager.

However, when I upload the files, the RadProgressManager gets not refreshed. He simply showsup one second or less, when the file has been finished uploading.

I do have a simple button which iterates through the files uploaded as follows:
            foreach (UploadedFile file in this.ruDocumentUpload.UploadedFiles)  
            {  
                if (!Object.Equals(file, null))  
                {  
                    file.SaveAs(Path.Combine("c:\\temp", file.GetName()));  
                      
                }  
            } 

Nothing happens to the RadProgressArea unless the files have been finished uploading as mentioned above.

I am using the IIS7 which runs in Classic .NET AppPool Mode. The HttpHandler and the HttpModule haven been configured in the web.config as described in this forum.

Could anybody plz tell me what is going wrong?

Thanks for the quick response.

Sincerely
Oliver

2 Answers, 1 is accepted

Sort by
0
Oliver
Top achievements
Rank 1
answered on 13 May 2008, 06:37 AM
Telerik,

do you have an answer for this problem?
0
Dimcho
Telerik team
answered on 13 May 2008, 10:47 AM
Hi Oliver,

I was not able to reproduce the issue on my side. I included the code from the code snippet in a sample application and it works - the progress bar is filling correctly. Maybe the problem is due to some configuration settings.
Please note that the memory optimization part of the RadUpload can not work in a Medium Trust environment. RadMemoryOptimization requires ReflectionPermission in order to operate correctly and in MediumTrust ReflectionPermission is not available. 
I would like to ask for more details about your scenario, application and server settings. Having more information we will be able to explore the problem and think for a possible solution.


Kind regards,
Dimcho
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Upload (Obsolete)
Asked by
Oliver
Top achievements
Rank 1
Answers by
Oliver
Top achievements
Rank 1
Dimcho
Telerik team
Share this question
or