【发布时间】:2014-11-06 12:36:40
【问题描述】:
我编写这段代码是为了与 ejbca 服务器(JBoss 5.1.0.GA-jdk6、EJBCA 4.0.10 和 openjdk-6-jdk)通信:
CryptoProviderTools.installBCProvider();
String urlstr = "https://ejbca05:8443/ejbca/ejbcaws/ejbcaws?wsdl";
System.setProperty("javax.net.ssl.trustStore","C:\\Users\\l.\\keystore.jks");
System.setProperty("javax.net.ssl.trustStorePassword","provae");
System.setProperty("javax.net.ssl.keyStore","C:\\Users\\l.\\keystore.jks");
System.setProperty("javax.net.sslews.keyStorePassword","provae");
QName qname = new QName("http://ws.protocol.core.ejbca.org/", "EjbcaWSService");
EjbcaWSService service = null;
try {
service = new EjbcaWSService(new URL(urlstr),qname);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
System.out.println("errore nell'url");
}
EjbcaWS ejbcaraws = service.getEjbcaWSPort();
但我有这个例外:
Exception in thread "main" javax.xml.ws.WebServiceException: Failed to access the WSDL at: https://ejbca05:8443/ejbca/ejbcaws/ejbcaws?wsdl. It failed with:
Got java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: sun.security.ssl.SSLContextImpl$DefaultSSLContext) while opening stream from https://ejbca05:8443/ejbca/ejbcaws/ejbcaws?wsdl.
at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.tryWithMex(RuntimeWSDLParser.java:173)
..........
.......
Caused by: java.security.UnrecoverableKeyException: Password must not be null
at sun.security.provider.JavaKeyStore.engineGetKey(JavaKeyStore.java:124)
at sun.security.provider.JavaKeyStore$JKS.engineGetKey(JavaKeyStore.java:55)
at java.security.KeyStore.getKey(KeyStore.java:792)
keystore superadmin.p12 转换为 jks。我也尝试过使用 ejbca 或 keytool 创建的其他密钥库,但我得到了同样的错误。 有人知道为什么吗?
【问题讨论】:
-
您不应该对密钥库和信任库使用相同的文件。您的代码无法编译。
标签: java ssl passwords keystore ejbca