Hi,
I have an app that i use to create some report from data I grab on each host connected to the VCs....
So when I connect I create an List of host using something like :
List<EntityViewBase> hostslist = new List<EntityViewBase>();
hostslist = client.FindEntityViews(typeof(HostSystem), null, null, null ) ;
So for a VC where there is only 1 to 5 host this does not take to long to create that list....
But I have a VC with 100+ hosts and it took like 25 minutes to just create the list and continue after,....
Is there a way to speed up the host listing ?
Thanks for any help in advance,,, and will award the point for any helpful answers.
Jon