Hi every body,
this code seems to not execute anymore on a tomcat 6.0
final Connector httpsConnector =
_embedded.createConnector( address, httpsPort, "https");
IntrospectionUtils.setProperty(httpsConnector,
"sslProtocol", "TLS");
IntrospectionUtils.setProperty(httpsConnector,
"keystoreFile", "conf/tomcat.jks");
IntrospectionUtils.setProperty(httpsConnector,
"keystoreType", "JKS");
IntrospectionUtils.setProperty(httpsConnector,
"clientAuth", "false");
_embedded.addConnector(httpsConnector);
Does anybody has a pointer on a correct documentation.
Regards