If we login to the ASP.NET app (it uses identity impersonation) as ourselves, everything works fine (we, the developers, are administrators). However, some of the other users (non-administrators) cannot get logged in. We get the following error:
Code: Select all
System.Web.HttpUnhandledException: Exception of type System.Web.HttpUnhandledException was thrown. ---> System.Exception: Failed to create mutex. errno=5
at VaultLib.SystemMutexWin32..ctor(String name)
at VaultLib.SystemMutex.CreateSystemMutex(String name)
at VaultClientOperationsLib.CacheMember..ctor(String folder)
at VaultClientOperationsLib.CacheMember_Repository..ctor(String folder)
at VaultClientOperationsLib.TreeCache..ctor(Int32 repID, String username, String uniqueRepositoryID, String localStoreBasePath, ClientInstance ci)
at VaultClientOperationsLib.ClientInstance.SetActiveRepositoryID(Int32 id, String username, String uniqueRepositoryID, Boolean doRefresh, Boolean updateKnownChangesAll)
Hopefully someone can help.