How to access a third-party component using ASP.NET and a JKS certificate?

I need to access a third-party application that requires a JKS certificate (which I have).

My client application is ASP.NET. How can I do it?

(I would like to provide additional information, but unfortunately I do not have them!)

+3
source share
1 answer

First import the certificate into the Windows certificate store. See http://tjworld.net/software/codesigning/JKS2PFX.html for this. If you need to use it from an aspnet account, you may want to import it into the machine store (instead of the certificate store of your accounts). Use MMC addin certificates to verify it.

Then use this certificate in your application. In most cases, you will select it by the "DN = ...." property (which you will also see in the MMC).

NTN, Thomas

+1
source

Source: https://habr.com/ru/post/1705333/


All Articles