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

My client application is an ASP.NET one. How do I go about this?

(I would have liked to provide more information, but unfortunately I have none!)

link|improve this question

64% accept rate
feedback

1 Answer

First, import the certificate to the windows certificate store. Have a look at http://tjworld.net/software/codesigning/JKS2PFX.html for this. If you need to use it from the aspnet account you might prefer to import it to the machines-store (instead of your accounts cert store). Use the MMC, certificates addin to check it.

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

HTH, Thomas

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.