Retrieve client cert in Servlet when using mutual authentication?
问题 I am building a web application using Java and Tomcat 7.0. I have a self-signed certificate (in the future I'll get an official one) on the server side, and I've added a client's root certificate to its truststore. I've already set a required two-way authentication for https protocol on port 3443 with the following lines on the server.xml file: <Connector port="3443" scheme="https" secure="true" SSLEnabled="true" truststoreFile="server.keystore" truststorePass="keystore password" keystoreFile