Zeljko-
   According to the documentation for the servlet API, you should be able
to get the client certificate from the request object like this:

X509Certificate cert = (X509Certificate) request.getAttribute(
        "javax.servlet.request.X509Certificate");

I have seen this work under Java Web Server, and I have found that it does
not work under Netscape Enterprise Server 3.6 calling into JRun. I'd love
to hear of other cases where it does work.
    Mark

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to