HI All
I want to retrieve OCSP information at server side in servlet .
So currently i am using
X509Certificate certChain[] = (X509Certificate[])
request.getAttribute("javax.servlet.request.X509Certificate");
ans also i have configured below value at /conf/server.xml
truststoreFile="/LocalDev/software/ssl/server/server.ks"
truststorePass="password"
and clientAuth="want"
Even though i am unable to retrieve value ,It's giving null.
ANy idea is there any extra configuration i need to do at tomcat side?