Error1: An operations error occurred.
Error2: While trying to retrieve the authorization groups, an error (110) occurred.
public static bool CheckGroupMembership(string userID, string groupName, string domain)
{
bool isMember = false;
// Get an error here, so then I use my username/password and it works...
PrincipalContext ADDomain = new PrincipalContext(ContextType.Domain, domain);
UserPrincipal oUserPrincipal = UserPrincipal.FindByIdentity(ADDomain, userID);
PrincipalSearchResult<Principal> oPrincipalSearchResult = oUserPrincipal.GetAuthorizationGroups(); //<-- Error is here:
foreach (Principal oResult in oPrincipalSearchResult)
{
if (oResult.Name.ToLower().Trim() == groupName.ToLower().Trim())
{
isMember = true;
}
}
return isMember;
}
This all works when I am debugging on the same machine, it is only failing when I am pulling up the web page from a remote server.
Here is what I did.
Because I wanted the DLL to remain seporated and independent from SharePoint, I added this in the SharePoint call for the methods that require this...
In the DLL file it is calling I added this:
I didn't like to go this route, but in order to keep the DLL independent I had to.