Hi,
done stunneling,
but still not success, got this kind of error:
2023-10-26 23:38:09,995 [49] DEBUG Toems_Service.Workflows.LdapSync Active Directory Bind Failed.
2023-10-26 23:38:09,995 [49] ERROR Toems_Service.Workflows.LdapSync The value for the property PageSize cannot be set.
Watched into source code:
var searcher = new DirectorySearcher(entry);
searcher.Filter = "(objectCategory=organizationalUnit)";
searcher.PropertiesToLoad.Add("ou");
searcher.PropertiesToLoad.Add("distinguishedName");
searcher.SizeLimit = 0;
searcher.PageSize = 500;
searcher.FindOne();
return true;
How to debug next, I have to catch stunnel requests?
Or how,
what this DirectorySearcher is doing,
some googling shows that its preffered to skip it, or set to 0 to skip hit,
but its hardcoded.
Please help