I need to implement double check authentication using 1) certificate and 2) authentication by login/password for my SOAP web-service. Is it possible with JavaEE?
With spring-ws-security I could freely add custom AuthorizationProvider, and check user by any tool...
I've found authentication on servlet-level for certificate check:
<login-config>
<auth-method>CLIENT-CERT</auth-method>
</login-config>
But how could I add custom authentication on SOAP level? Thanks!