Whilst we are not receiving as many complaints we are still getting lockouts on our frequent users using SSRS reports..
Only when using SSRS through Report Portal. still lockouts after 1. Tried restarting the IE browser- 2. Tried using different Browsers Firefox, Chrome and IE.
Reset the lockout and away they go again. Can be a number of days later. Not near mandatory password changes
Works fine if they go direct to the Reporting Server (SSRS)
Somewhat baffled. We are going back to the installation process of both products but not finding anything out of the normal. If you have any further suggestions it would be very much appreciated.
When the Windows Password is blank the SSRS report will still try to pass the Windows credential without the password. Please find and open rs\userInfo.aspx in notepad and change line 3 from:
var sNtSecInfo = "<%=Encode64(Session("NtUserId") + ":" + Session("NtPassword"))%>";
to:
var sNtSecInfo = "<%=IIF(Session("NtPassword")="","",Encode64(Session("NtUserId") + ":" + Session("NtPassword")))%>";