I'm trying to make a web-app with using client keys for client authentication. I think I've figured out the whole truststore problem so I can get the client actually authenticated. However I don't want to require client auth. I just want to test for it and enable features if it's enabled.
I can use .wantClientAuth which will request it, but allow connection if it doesn't exist. But I can't find any property to find out if the request has been authenticated.
This should exist, otherwise what is the purpose of wantClientAuth. How do I use it?
I don't have the setup running here, to test it right now, but shouldn't
request.getUserPrincipal()
andrequest.getAuthType()
give you what you want.See http://www.docjar.com/docs/api/javax/servlet/http/HttpServletRequest.html
(That assumes you have access to the servlet request in the context in which you're working)