APPROVED ANSWER
SELECTED ANSWER
replied on July 7, 2022
•
Show version history
Hey Jeff,
Thanks for the poke.
The Inner Exception error shows a clear SQL permissions issue.
Inner exception: System.Data.SqlClient.SqlException
Message: The EXECUTE permission was denied on the object 'Forms_IdList', database 'LFForms', schema 'dbo'.
Start by verifying that the account Forms is using to connect to its LFForms database has the db_owner database-level role there.
Some of the best troubleshooting advice I ever got (thanks @████████!) was "Read the stack trace until you find a line that shows where the error is really coming from".
Though they can look intimidating, and most of the lines of most of them are gibberish to me, there's a reasonably clear error message hiding in plain sight in there a good portion of the time. Even when there's not, looking at the function calls can usually help point me in the right direction for further troubleshooting (e.g., seeing something fail at "Login(username, password, repository)" points toward some kind of authentication error).