Jordan
Jordan

Reputation: 80

"InvalidOperationException: IDX20803: Unable to obtain configuration from: '[PII is hidden]'" With Azure Application Services .NET 4.8

Ran into an issue where I was getting the following error message.

enter image description here

Looking at this post -> "InvalidOperationException: IDX20803: Unable to obtain configuration from: '[PII is hidden]'"

I was able to correct this issue with - ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12

Not sure if this was an update on Azure or the Identity provider on Azure, but I am just trying to look into this to see if I can find a root cause.

Upvotes: 1

Views: 743

Answers (1)

Ashish.Wadekar
Ashish.Wadekar

Reputation: 137

This is not related to Azure identity provider. Please refer below document from microsoft for more details on TLS.

https://learn.microsoft.com/en-us/dotnet/framework/network-programming/tls

Hope this helps :)

Upvotes: 1

Related Questions