Digital Signature From Smartcard (Web Application/Web Browser)

I found this example. Is it possible to prompt for the smartcard in a web application/web browser and get the cert for this example? I don’t see and client code for telling the application to get it from the USB reader.

@robothump

You can select LocalMachine as Store Location in case you want to load the certificate from USB attached to the system.

X509Store store = new X509Store("MY", StoreLocation.LocalMachine);

However, we need to further investigate whether similar functionality can be achieved in a browser in a web application. We have logged an investigation ticket as PDFNET-49880 in our issue tracking system for your original requirements. We will further investigate it and let you know once the ticket is resolved. Please give us some time.

Ok, thanks I will give it a try…