I have a service-oriented webapp that uses IIS 8.5 and client certificate authentication via smartcard. The statically served front-end calls multiple services via AJAX. The smartcards with the certificates are protected with a PIN. When using Chrome, Firefox, etc. the PIN prompt appears once and is seemingly cached for subsequent use.
However, we need to embed the webapp inside a Windows 10 .NET desktop application using cefsharp. The webapp works, but the user is requested to enter their PIN constantly, once per service is seems, and then shortly after some timeout again, for (I think) each service.
I don't know where to begin to know if it's possible to implement caching with cefsharp. From what I read this data should have been cached by Windows, but it doesn't look like this is the case or the embedded chromium is confusing the caching strategy.
Is smartcard PIN caching something that can be done with cefsharp (or IIS, or even the client's Windows machine if we must)?