Im using JavaTM and Ive saved my certificate as a PEM file, but its not working. What do I do?
Java requires the PEM file to be in pkcs12 format. To convert your PEM file to pkcs12 format, run the following from a command prompt: openssl pkcs12 -export -in YOURPEM.pem -inkey YOURPEM.pem -out YOURPEM.p12 -passout pass:YOURPASS -name “YOURNAME” Where: YOURPEM – the name of your PEM file YOURPASS – any password YOURNAME – any arbitrary name For example: openssl pkcs12 -export -in 1234567.pem -inkey 1234567.pem -out 1234567.p12 -passout pass:987654321 -name “LinkPoint” The output *.p12 file and the password are used to pass as parameters for JLinkPointTransaction object If you have a problem converting your PEM file, please contact support.