VMware Cloud Community
pedrodel
Contributor
Contributor

How to interact with virtual machine with C# application

Hi all !

I'm developping an application using C# and I don't know how to interact with my virtual machine...

More explication :

I have already this code (this is not all my app Smiley Wink) :

VimClient vimClient = new VimClientImpl();
vimClient.Connect("server_address");
vimClient.Login("user", "password");
List<EntityViewBase> vmList = vimClient.FindEntityViews(typeof(VirtualMachine), null, null, null);

With it I can connect to my server, manage my VM's, powering on/off them... But I can't interact my them (show the destok, grab input keyboard/mousse...)

After research I think I don't have to use library VmWare.Vim.dll, but an other, witch one ? And how to use it with my GUI's app ?

If somebody can't help me...?

Thanks in advance !

Pierre

0 Kudos
0 Replies