picture of tbs certificates
picture of tbs certificates
RatePoint Site Seal

Focus
VeriSign Trust Seal
Norton Secured Seal
As a VeriSign major partner, TBS internet is the first company in Europe to offer the VeriSign trust logo, the most recognized worldwide. An SSL certificate is no longer required as the seal is available after an organisation audit and comes with a malware detection system. More details...




java.lang.exception: input not an x.509 certificate

Getting a "java.lang.exception: input not an x.509 certificate " error might mean that your keytool is out of date and too old to understand PKCS7 format.

Two solutions:
  • upgrade your JDK (advised)
  • Install the certificate manualy. To do so go on your certificate status page
    • "See the certificate" button
    • Download the certificate in X509 format
    • install it with:
      keytool -import -trustcacerts -file cert-xxxxxxxxxx-yyyyy.cer -alias [alias-name] -keystore [keystorename]
    • Then click on "See certification chain"
    • Put each of the displayed pieces in a file and import them:
      keytool -import -trustcacerts -file FILE.TXT -alias [alias-name] -keystore [keystorename]
      Do not re-import the certificate if the tool indicates that it is already present.
Reminder:
  • alias-name: name you defined when generating your CSR / private key
  • keystorename: name of the file containing the keystore (a keystore is a repository of security certificates, either Certification Authority Certificates or Public Key Certificates, private key, certification chain....)
Anonymous [ settings | log in ]
Last edited on 06/15/2011 12:57:22 --- [search]