Click here to Skip to main content
15,880,427 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
This is my issue: I am updating AWS S3 nuget package from 3.7.1.2 to 3.7.101.25 Project details: I have API that calls Class Library in which i am creating a AmazonS3Client. In version "3.7.1.2", its working fine. But in 3.7.101.25, i am getting below error. Error:

System.InvalidOperationException HResult=0x80131509 Message=Cannot find a handler of type EndpointResolver Source=AWSSDK.Core

var amazonS3Config = new AmazonS3Config() { MaxErrorRetry = maxRetryAttempts, Timeout = TimeSpan.FromSeconds(requestTimeoutInSecond), ServiceURL = serviceURL } s3Client = new AmazonS3Client(key, secret, amazonS3Config);


What I have tried:

This is my issue: I am updating AWS S3 nuget package from 3.7.1.2 to 3.7.101.25 Project details: I have API that calls Class Library in which i am creating a AmazonS3Client. In version "3.7.1.2", its working fine. But in 3.7.101.25, i am getting below error. Error:

System.InvalidOperationException HResult=0x80131509 Message=Cannot find a handler of type EndpointResolver Source=AWSSDK.Core

var amazonS3Config = new AmazonS3Config() { MaxErrorRetry = maxRetryAttempts, Timeout = TimeSpan.FromSeconds(requestTimeoutInSecond), ServiceURL = serviceURL } s3Client = new AmazonS3Client(key, secret, amazonS3Config);
Posted
Updated 20-Dec-22 8:36am

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900