jboss7.x - Access to a Client's Certificate from Inside an EJB? -


having client authentication set on jboss 7, i'd access client's certificate form inside ejb, or inside login module.

is possible?

thanks

in case there servlet request (from jsf or servletfilter) can do:

servletrequest servletrequest = (servletrequest) facescontext.getexternalcontext().getrequest(); x509certificate[] x509certificates = (x509certificate[]) servletrequest.getattribute("javax.servlet.request.x509certificate"); 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -