"Could Not Connect To The Server #101" Error Thrown When Uploading The Files To S3 Storage Bucket

Error fix for "Could not connect to the server #101" thrown when uploading the files to S3 Storage Bucket.

  1. Go to the IAM and ensure the S3 Bucket policy is attached to the User which is configured in the Orchestrator Storage Bucket.
  2. 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
  1. Copy the above permission code, paste and and save the setting.
  2. 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

}

]