Re: Fetch SSL Client Certificate from AXIS-Request

2011-10-08 Thread Hasini Gunasinghe
Hi, I believe you can access the client certificate in the following way from axis2 message context when mutual authentication is enabled, HttpServletRequest request = ((HttpServletRequest) *messageContext* .getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST)); X509CertImpl cert = request.getAttrib

Fetch SSL Client Certificate from AXIS-Request

2011-09-29 Thread maxpade
Hi all, i have set SSL-Client authentiaction for my AXIS-Webservice. Now i'm sending with SSL the client-certificate to authenticate at the server. How could i read the SSL-Certificates in AXIS while the transport handshake?  Are there examples? Any suggestion would be great appreciated. Tha