Solution: The fix for this is two fold . One has to be done on ADFS by running below script
Set-ADFSRelyingPartyTrust -TargetName "SPS 2010 ADFS" -TokenLifetime 5
and the other script must be run on SharePoint Farm as below:-
$sts = Get-SPSecurityTokenServiceConfig
$sts.LogonTokenCacheExpirationWindow = (New-TimeSpan –minutes 1)
$sts.Update()
Iisreset
Detailed information can be found in Steve Peschka's blog:-
No comments:
Post a Comment