라이언트 측에서 서버를 호출하기 전에 다음을 추가하세요.
System.Net.ServicePointManager.ServerCertificateValidationCallback += delegate { return true; };
클라이언트가 잘못된 TLS 버전을 실행하는 경우 (예 : 서버에서 TLS 1.2 만 실행하는 경우)이 오류가 발생할 수 있습니다.
다음을 사용하여 수정할 수 있습니다.
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; //tested in .NET 4.5