java - Refresh Session in spring security SAML -
we using spring saml extension provide support sso our customers. working fine our dev environment idp(okta). however, 1 of our client using tivoli idp , running problem after amount of time, user start getting unable authenticate error.
based on research found out that, tivoli setting sessionnotonorafter
attribute <saml:authnstatement authninstant="2015-09-14t20:14:14z" sessionindex="xxxx" sessionnotonorafter="2015-09-14t21:14:14z">
in our saml assertion response.
i know options have sp handle scenario. should prompting user re-authenticate whenever run issue or there way can set our application in way can refresh session automatically.
thanks sahil
this sessionnotonorafter attribute expiry payload. sp should not receive same payload ever if there lot of chance middle man attack.
the sp should implement keepalive functionality ping idp saying extend session of same payload.so idp can update attribute current data , time stamp.
Comments
Post a Comment