I'm current developing a project which communicates with ISA/TMG through the FPCLib with .net(c#)
I want to retrieve the DistributionStatus which i read about on http://msdn.microsoft.com/en-us/library/aa501971.aspx .. anyhow, to start with i cannot even see the DistributionStatus property in my project?? They only way i can retrieve an IFPCDistributionStatus2 or FPCEEDistributionStatus is through reflection.. and it looks like it worked but the LastConfigurationUpdateTime of the object is set to "31-12-1899 00:00:00" and the Status is FpcConfigurationStatus.fpcStatusError :/
foreach (FPCLib.FPCArray xarr in root.Arrays) arr = xarr;
FPCServer server = arr.Servers.Item("<isa-computer-name>"); server.Refresh();
try { Console.WriteLine(server.PersistentName);
object o = server.GetType().InvokeMember("DistributionStatus", BindingFlags.GetProperty, System.Type.DefaultBinder, server, null); if (o != null) { IFPCDistributionStatus2 status = (IFPCDistributionStatus2)o;