Forum Discussion

nrodrigu111's avatar
nrodrigu111
New Contributor
12 years ago

[Resolved] keystore file in windows

I need to use WS-Security in a project .. but in the example (http://www.soapui.org/SOAP-and-WSDL/app ... urity.html) the keystore file is a jks, right?

Now, i have two files wilcarddiannew.crt and wilcarddiannew.key.

How can i make the right association with these files? something is missing?

Thanks

2 Replies

  • Hi,

    jks is java key store.
    The .key file is probably the private key and the .crt file is probably the certificate. You will need to create a java keystore using these and then use the keystore in SoapUI.

    Please see this link on creating the java key store with the certificate and key:
    http://stackoverflow.com/questions/1769 ... a-keystore
  • mrJames wrote:
    Hi,

    jks is java key store.
    The .key file is probably the private key and the .crt file is probably the certificate. You will need to create a java keystore using these and then use the keystore in SoapUI.

    Please see this link on creating the java key store with the certificate and key:
    http://stackoverflow.com/questions/1769 ... a-keystore



    That's the solution. Thank you very much for your answer.