Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
2k views

Is there a C# wrapper for the VMware VIX API?

I am using VMware Workstation 6.5 on Windows Vista x64. I would like to automate some of the VM management tasks. I know that there is a COM API (http://www.vmware.com/support/developer/vix-api/) ...
1
vote
2answers
360 views

For vSphere and vCenter automation, is PowerCLI cmdlets or VIX API the better approach?

http://www.vmware.com/support/developer/vix-api/ has VIX docs and says it is useful for automation of interactions with ESXI and vCenter vSphere PowerCLI is a command-line and scripting tool based on ...
1
vote
1answer
307 views

Vix API in python

I need to import VIX api libs in ubuntu using ctypes module. When I do: vix = CDLL('libvix.so') It fails: "cannot open..." what´s the problem??? libvix.so and python module are in the same ...
0
votes
0answers
25 views

Writing properties on VIX objects

I am currently using the VIX API 1.11 with VMware Workstation in order to write an application which automates the process of creating a VM with the latest release of a certain branch of software from ...
0
votes
1answer
28 views

Vmware: enable VIX programatically?

I found that it is possible to query if VIX is enabled by doing a VixVM_ReadVariable() for the variable "vmci0.present". Using VixVM_WriteVariable() to change this variable to enable VIX in a machine ...
0
votes
1answer
89 views

Calling Vix API from PowerShell

Long time stackoverflow reader, first time poster. Forgive me if I'm not asking a question correctly. I'm trying to use the VixCOM API with PowerShell. I don't have much experience with either. I am ...
0
votes
0answers
446 views

SAXException Processing instructions are not allowed within SOAP messages

I'm trying to get a simple Java application to connect to VMWare Orchestrator and the sample code they provided has little to no documentation. I'm connecting to the VMWare server, but I get the ...
0
votes
1answer
761 views

VMware VIX API FindItems() method never returns when querying for registered VMs

I am using VMware Workstation 6.5 on Windows Vista x64. I am trying to write some C# code that uses VMware Vix v1.6.1 COM API to get a list of registered virtual machines. The code I am using is as ...