How to upload a zip file from AWS S3 bucket to AEM? | Community
Skip to main content
August 26, 2021
Solved

How to upload a zip file from AWS S3 bucket to AEM?

  • August 26, 2021
  • 1 reply
  • 1868 views

How to upload a zip file (Package) from AWS S3 bucket to AEM (Should be uploaded as a package in Package Manager)? 
Using cURL or Java API the solution is required. 

 

Thank you!

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Fanindra_Surat

Hi @joy786 

 

Uploading a file from S3 into AEM will need to be a 2 step process. Download the object from S3 as a stream and then Upload it into AEM. Let us now look at them individually:

 

Downloading object from S3 - Refer to the script at https://github.com/paulhammond/s3simple

 

Uploading the file to AEM - Refer to the example curl scripts at https://helpx.adobe.com/experience-manager/kb/common-AEM-Curl-commands.html

Upload a new package

        curl -u admin:admin -F package=@"name_of_package.zip" http://localhost:4502/crx/packmgr/service/.json/?cmd=upload

 

Hope this helps!

Thanks!

1 reply

Fanindra_Surat
Community Advisor
Fanindra_SuratCommunity AdvisorAccepted solution
Community Advisor
August 26, 2021

Hi @joy786 

 

Uploading a file from S3 into AEM will need to be a 2 step process. Download the object from S3 as a stream and then Upload it into AEM. Let us now look at them individually:

 

Downloading object from S3 - Refer to the script at https://github.com/paulhammond/s3simple

 

Uploading the file to AEM - Refer to the example curl scripts at https://helpx.adobe.com/experience-manager/kb/common-AEM-Curl-commands.html

Upload a new package

        curl -u admin:admin -F package=@"name_of_package.zip" http://localhost:4502/crx/packmgr/service/.json/?cmd=upload

 

Hope this helps!

Thanks!

Joy786Author
August 27, 2021

Thanks for your reply @fanindra_surat !

I would need the zip (package) to be imported as a package in AEM Package Manager. Just updated my query.

Fanindra_Surat
Community Advisor
Community Advisor
August 27, 2021

Hi @joy786 - Updated my response.