system
(system)
1
Error fix for "Could not connect to the server #101" thrown when uploading the files to S3 Storage Bucket.
- Go to the IAM and ensure the S3 Bucket policy is attached to the User which is configured in the Orchestrator Storage Bucket.
- Go to the S3 Bucket in the AWS and open "Click on the Permission" and Select the CORS Configuration
<?xml version="1.0" encoding="UTF-8"?>
*
GET
3000
*
*
PUT
3000
*
*
HEAD
3000
*
*
POST
3000
*
</CORSConfiguration
- Copy the above permission code, paste and and save the setting.
- Now try to update the files .
XML is no longer supported, below json solved my problem
“CORSConfiguration”: {
"CORSRule": [
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"POST",
"DELETE"
],
"AllowedOrigins": [
"https://*.uipath.com"
],
"MaxAgeSeconds": 3000
}
]