Questions tagged [awss3transferutility]
58 questions
9
votes
1 answer
AWS S3 multipart upload too slow in background - iOS
I am using AWS S3TransferUtility's uploadUsingMultipart(fileURL, bucket, ...) function in my iOS app to upload video files to an S3 bucket. The uploads happen very fast whenever the app is in foreground. But as soon as the app goes in the…

Rishabh Sinha
- 91
- 2
7
votes
2 answers
AWS S3 Android SDK 2.11.0
My code looks like this:
final AmazonS3Client s3Client = new AmazonS3Client(new BasicAWSCredentials(s3AccessKeyId, s3SecretAccessKey));
final TransferUtility util = TransferUtility.
…

GC268DM
- 403
- 7
- 15
4
votes
2 answers
Cancel AWSS3 TransferUtility Upload task on button tap
My requirement is to cancel upload when ever user wishes.
I'm following TransferUtility document to setup and upload video, show progress, retains state even if app is in background. I couldn't find any way to cancel the uploadTask.
{
let…

Hemanth
- 133
- 2
- 12
3
votes
2 answers
How do I do S3 multipart upload from Android
Overview: I have an app that uploads images and small audio files to S3 using the following approach:
Get a presigned URL from the backend using a secure API.
Upload to the presigned URL using Retrofit.
Problem: Now I need to support larger files…

ShahiM
- 3,179
- 1
- 33
- 58
3
votes
1 answer
Use S3 TransferUtility with Content Uri
im trying to upload a file to S3 using the TransferUtility. I get the Uri via the ACTION_GET_CONTENT Intent.
The Result of the Intent looks something like…

OBit
- 160
- 1
- 12
3
votes
3 answers
"The connection with the server was terminated abnormally" when uploading to to S3 TransferUtility.UploadAsync on EC2 instance
The error I'm getting is:
The thread 0xffc has exited with code 0 (0x0).
Exception thrown: 'System.IO.IOException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.IOException' in Anjuna1.dll
Exception thrown: 'System.IO.IOException' in…

Meurig
- 41
- 8
3
votes
0 answers
The connection with the server was terminated abnormally (AWS S3 file upload)
Using the following code to upload a gzip file to S3:
class Program
{
public static AWSCredentials credentials;
static Program()
{
var chain = new CredentialProfileStoreChain();
if…

ferflores
- 1,084
- 3
- 18
- 35
3
votes
1 answer
AWS / iOS SDK: when should I use AWSS3TransferManager and AWSS3TransferUtility?
What is the difference in usage between AWSS3TransferManager and AWSS3TransferUtility in the Amazon S3 iOS SDK?
Here is what the documentation says for AWSS3TransferManager:
High level utility for managing transfers to Amazon S3.
…

mm24
- 9,280
- 12
- 75
- 170
3
votes
1 answer
Upload subdirectory transferutility S3
I want to upload all the files/folder inside a directory to a S3 bucket. I want to upload including the all the files in all the sub directories. I thought of using TransferUtility to do this. Though the link here says that 'By default, Amazon S3…

Reuben
- 268
- 3
- 15
2
votes
0 answers
AWS S3 Transfer Utility Multipart delay in resuming uploads (iOS Swift)
Whenever i start uploading files with multipart upload using transfer utility and if the file size is larger like 100mb once i kill the app and launch the app again it gives a delay in resuming the task, But the transfer utility uploadData function…

Abdullah
- 227
- 4
- 13
2
votes
2 answers
AWS Download function issue with file path
I have implemented a function to download aws s3 files using the following code:
public void credentialsProvider()
{
CognitoCachingCredentialsProvider credentialsProvider = new CognitoCachingCredentialsProvider(
…

coder
- 5,200
- 3
- 20
- 45
2
votes
1 answer
File is not encrypting in Aws s3 server side encryption (Customer provided Key) Android
I am trying to implement encryption in amazon with custom keys, I am providing these 3 values in the header as per the documentation mention
objectMetadata.setHeader("x-amz-server-side-encryption-customer-algorithm",…

Z-K-B
- 21
- 1
2
votes
2 answers
KMM IncorrectDereferenceException in Thread
I have been trying to upload an image to aws s3 server using shared module KMM. It works very well in Android but in iOS I have been getting this issue :- Uncaught Kotlin exception: kotlin.native.IncorrectDereferenceException: illegal attempt to…

WhiteSpidy.
- 1,107
- 1
- 6
- 28
2
votes
0 answers
Thread Pools ThreadStart and Finished Problem xamarin iOS
I am trying to download an XML file of size 85MB in my Xamarin iOS iPad App. Sometimes download completes successfully, but other times download hangs inbetween somewhere without giving any error. Progress stops.
AWS SDK version:
AWSSDK.S3…

Khaksar
- 333
- 3
- 17
2
votes
1 answer
How to upload UIDocumentPickerViewcontroller file into AWS S3 TransferUtility Swift
I am trying to pick some files from UIDocumentPickerView and upload to AWS S3 with TransferUtility. Here, I'm not able to pass the filename, size and file data to upload function. Also, upload function status need to show on UITableView.
Here below…
user10196635