Hi
I'm trying to connect to remote Adaxes service from C# program.
Using sample code from "Writing ADSI scripts" page in the docs.
Added DLLs, here is my code:
static void Main(string[] args)
{
AdmNamespace adsNS = new AdmNamespace();
IAdmService admService = adsNS.GetServiceDirectly("10.64.3.41");
Console.ReadKey();
}
getting error:
System.Configuration.ConfigurationErrorsException: The configuration file is missing.
error line: AdmNamespace adsNS = new AdmNamespace();
I'm not sure which config file it's asking for.
V.