hi,
if i configure a SslSocketConnector with jetty server and use my Http Client to connect, i get a handshake error if keystore type is PKCS12, while it worksa fine with JKS type keystore.
is this a problem in jetty or am i missing something while configuriation.
below is the sslConnector configuration i used.
SslSocketConnector sslConnector = new SslSocketConnector();
sslConnector.setKeystore("E:\\gaurav\\jettyKS");
//uncomment below line when keystore is PKCS12 type
//sslConnector.setKeystoreType("PKCS12");
sslConnector.setKeyPassword("password");
//sslConnector.setTruststore("E:\\gaurav\\jettyKS");
//sslConnector.setTruststoreType("PKCS12");
//sslConnector.setTrustPassword("password");
sslConnector.setPassword("password");
sslConnector.setPort(8082);
sslConnector.setHost("10.11.29.70");
server.addConnector(sslConnector);