Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IdentityNotMappedException

Tags:

c#

System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.

The error comes only one time after the registration of the application.

like image 824
Chatur Avatar asked Jul 24 '10 11:07

Chatur


1 Answers

IdentityNotMappedException is returned when a SecurityIdentifier can not be mapped, e.g. when a SID can not be translated to an NT user. This is usually caused by deleted users or no access to the domain controller who performs the translation. If it only happens once, then it is probably caused by intermittent domain controller connection failures or some sort of lag.

like image 73
BlackCat Avatar answered Sep 18 '22 19:09

BlackCat