Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
11 views
Hi Team, 
We are planning to use RadCloudUpload control in asp.net webforms(.net framework 4.8) in order to upload the documents to blob storage directly. But internally it uses WindowsAzure.Storage package to upload the documents and now it is  deprecated in NuGet package manager. Alternately  we have used  Azure.Storage.Common /Azure.Storage.Blobs package but didn't help and RadCloudUpload control was looking for WindowsAzure.Storage package

Could you please provide any solution towards it or it is fine to use depreciated WindowsAzure.Storage package on our end to make use of use RadCloudUpload control 



Thanks
Akshay
Attila Antal
Telerik team
 answered on 05 Mar 2024
1 answer
42 views

Hello,

I am facing an issue when uploading to AWS S3, which is automatic renaming of the uploaded file 

original file name is BD-september-2022-quarter.csv

and the new file name is : 03fb8435-90ea-4378-a602-925d37db8277_BD-september-2022-quarter.csv

i don't know why after upload the original filename is not being kept
 

<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" RenderMode="Lightweight" MultipleFileSelection="Automatic" OnClientFileUploading="OnClientFileUploading" AllowedFileExtensions=".csv" ProviderType="Amazon" localization-SelectButtonText="Browse to Upload ..." MaxFileSize="3145728" OnFileUploaded="RadCloudUpload1_FileUploaded"/>

Thanks for your help
Attila Antal
Telerik team
 answered on 20 Mar 2023
1 answer
57 views

Hello,

I am trying to upload file to S3Bucket and after being uploaded needs to move it to a subfolder under the bucket.

Is there any automatic proccess to upload directly to a S3Bucket/UserID folder?

or we have to create the sub folder first?

 

Thanks

Michel

Attila Antal
Telerik team
 answered on 13 Mar 2023
0 answers
44 views

Dears,

I want to generate thumbnail from images upload to cloud azure cloud already I have create azure function to generate thumbnail but it is not suitable for us because has many issues... if possible please share with me any way to do that

thanks

Rebeen
Top achievements
Rank 1
Iron
 asked on 26 Dec 2021
1 answer
672 views

Hello,

 

is it possible to set the content-type of the file when uploading to Azure blob storage using radcloudupload?

 

 

Thanks

Peter Milchev
Telerik team
 answered on 15 Dec 2021
0 answers
56 views

Hi Community,

I am forced to find a way to upload multiple files to an Amazon S3 Bucket. Therefore I am using an ASP.Net Webform with Telerik UI Ajax.
In short, this should be the solution:
The easiest way would be to select all files which should be uploaded. At first, all these files should be ziped.
This created zip-file should be transfered to the amazon s3 bucket.

Here I got some issues.
-> All my uploaded files got prefixes, which makes it hard to address them on the bucket. How do I Upload files via RadCloudUpload without any prefixes, just the pure filename?

Next issue:
-> Am I right that I am not able to create this zipfile on the local client machine?
What would be a proper workaround? The 'classic' RadAsyncUpload used a temp folder to collect these uploads. Unfortunately the asyncUploader is not able to address the Amazon S3 bucket.

Thank you in advance for your help.

cp-it
Top achievements
Rank 2
 asked on 30 Jun 2021
0 answers
58 views

We have a RadCloudUpload control that saves files to an S3 bucket. A postback is done afterwards by a save button. Works fine on dev machines.

On the AWS servers, some files get deleted after upload and save, but not all.
I uploaded 18 files today, 17 of them got deleted after the UncommitedFilesExpirationPeriod (which is set to 1 hour). This was during the day, when we run 16 web servers in a load balanced server group.
I tried later in the evening, when we reduce it to 2 web servers in the group. At that point, I uploaded 18 files again, and 9 were deleted.

That made me suspect that the problem is that the postback is done to a different webserver, and thus the RadUploadControl does not set the files as committed. Does that seem likely? If not, what could be the cause of this?

And more importantly, how should I solve it? I looked in the forum here and found how to override the DeleteFile method, which works... but then how do I allow users to delete files (which seems to work by simply never committing the file and then deleting it from S3 after the UncommitedFilesExpirationPeriod ).

Thanks.

Micke
Top achievements
Rank 1
 asked on 13 Apr 2021
1 answer
34 views

When uploading large video files, the progress bar goes to 100% and then the control hangs.  If I wait long enough, then the FileUploaded event will fire.  
After a 700MB was uploaded, it took an additional 8 minutes for the upload to complete.  After a 30MB file was uploaded, it took an additional 15 seconds to complete.  Reading the files from cloud storage is fast.

Web.config:

<httpRuntime enableVersionHeader="false" targetFramework="4.6" maxRequestLength="1024000" executionTimeout="36000" maxQueryStringLength="4096" />

 

<telerik:RadCloudUpload runat="server" ID="RadCloudUploadVideo" ProviderType="Azure" RenderMode="Auto" AllowedFileExtensions=".mp4, .webm, .ogv"
Localization-SelectButtonText="Select MP4, WebM, or Ogv file to Upload" HttpHandlerUrl="~/Code/handlerVideoUpload.ashx" OnClientFileUploaded="fileUploaded">
<FileListPanelSettings RenderButtonText="true" />
</telerik:RadCloudUpload>

 

Any ideas on what is causing this or how to troubleshoot?

Peter Milchev
Telerik team
 answered on 31 Mar 2021
3 answers
122 views

Hello,

 

1) Is there a way to do an automatic post-back when files finish uploading without the user having to click on a button? I am trying to save uploaded file information to database for further processing. The event doe not seem to be firing.

 

Thanks.

 

Soumen
Top achievements
Rank 1
Veteran
 answered on 21 Sep 2020
0 answers
78 views

Hello I am working in RadCloudUpload to upload files in amazon s3 server. It working with Single file (20MB) perfectly. But when I am trying  to open multiple files (ex: 10MB, 20MB, 5MB, 8MB) it is uploading only One or Two files at a time.Not all the files are uploaded. but If I am trying to upload files with smaller size (ex: 10KB, 2MB, 100KB, 3MB) then all the files are uploaded to S3 server. How to resolve this problem ?

<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="91943040" RenderMode="Lightweight"<br>                 MultipleFileSelection="Automatic" OnClientFileUploaded="fileUploaded" OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon"  ><br>        </telerik:RadCloudUpload>

 

function fileUploaded(sender, args) {         theForm.submit();       }

 protected void RadCloudUpload1_FileUploaded(object sender, CloudFileUploadedEventArgs args)
    {      
        long contentLenght = args.FileInfo.ContentLength;
        string contentType = args.FileInfo.ContentType;
        string keyName = args.FileInfo.KeyName;
        string originalName = args.FileInfo.OriginalFileName;

        args.IsValid = true;       
    }


<httpRuntime maxRequestLength="91943040" executionTimeout="3200" />
Soumen
Top achievements
Rank 1
Veteran
 asked on 21 Sep 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?