Monday, March 25, 2024

Share cookies between dot net framework and dot net core

Since dot net framework encryption is different from that of dot net core, encrypted cookies cannot be directly shared between the two. Instead we need to create a compatible data protector as explained at 
c# - share authentication cookie between .NET Framework and .Net Core - Stack Overflow

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...