IWA and WebSphere? -
is integrated windows authentication available in websphere (7)?
specifically, how possible obtain username , group memberships of user accessing web application via ie?
spnego supported on was7 see creating single sign-on http requests using spnego web authentication
as specified in doc:
the requester's identity in websphere application server security registry must identical identity spnego web authentication retrieves. identical match occur when microsoft windows active directory server lightweight directory access protocol (ldap) server used in websphere application server.
which means httpservletrequest.getremoteuser()
return actual username.
you can perform ldap operations through jndi see jndi ldap api prefer mapping groups roles determine group membership.
Comments
Post a Comment