javaのプログラムで証明書をしっかりと登録しておかないと下記のようなエラーが出る
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
ググれば出てくる話だが備忘のため
①対象のサイトから証明書DL
②任意のフォルダに配置
③下記コマンド実行
keytool -import -alias enetune -keystore [証明書ストアパス] -file [証明書パス]
④確認方法
keytool -v -list -keystore [証明書ストアパス]
参考 http://www.melange.co.jp/blog/?p=2345
http://d.hatena.ne.jp/uunfo/20110813/1313242092