Not sure if this is the best forum for C# and ISA administration but here it goes....
I am trying to administer IA remotely using C#. I can run C# code directly on an ISA server, and then connect to other ISA servers no problem, as follows:
private FPCLib.FPC root = new FPCLib.FPC();
root = <whatever ISA object I wish to retrieve>
This works without a hitch. I know I can connect to other servers using a connect method (haven't executed this yet, but seen the code posted before.)
Here's my problem. I want to run this code not from an ISA server, but from a windows client. Windows clients do not recognize ISA objects. My Windows XP box does not recognize FPCLib, since it is exclusive to ISA COM. I need a way that the client machine can connect to the ISA server and retrieve this object. My first thought was to use winmgmts, but I cannot find any code that retrieves the FPCLib object through winmgmts. Any ideas?
I am trying to administer IA remotely using C#. I can run C# code directly on an ISA server, and then connect to other ISA servers no problem, as follows:
private FPCLib.FPC root = new FPCLib.FPC();
root = <whatever ISA object I wish to retrieve>
This works without a hitch. I know I can connect to other servers using a connect method (haven't executed this yet, but seen the code posted before.)
Here's my problem. I want to run this code not from an ISA server, but from a windows client. Windows clients do not recognize ISA objects. My Windows XP box does not recognize FPCLib, since it is exclusive to ISA COM. I need a way that the client machine can connect to the ISA server and retrieve this object. My first thought was to use winmgmts, but I cannot find any code that retrieves the FPCLib object through winmgmts. Any ideas?