2017-01-04 3 views
1

ECDSA 인증서가있는 URL에서 XML이 필요합니다.ECDSA 인증서를 사용하여 URL에서 xml 문서 가져 오기

The request was aborted: Could not create SSL/TLS secure channel

내가 시도 : :이 얻을 때 , 나는 오류가

ServicePointManager.ServerCertificateValidationCallback = (snder, cert, chain, error) => true; 

ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; 

여전히

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls; 

하지만 같은 오류.

답변

1

마지막으로이 행 추가하여 고정 :

을 //이 ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 오류를 반환 그렇지 않으면 SL12하기 위해 보안 프로토콜을 설정 | (SecurityProtocolType) (3072);