Programming Languages: Java
License: BSD License
browse code,
statistics,
last commit on 2012-05-18
svn co https://vijava.svn.sourceforge.net/svnroot/vijava vijava
I m new in Vi API. How can I move disk from one Virtual machine to another Virtual Machine ?.
2012-05-29 10:41:04 PDT by kajalmahata
Thanxx.
2012-05-29 10:02:31 PDT by kajalmahata
hey guys same problem here..... our vijava based application uses https/ssl to ensure safe transmissions, so encryption is involved. in fact, a ECCN ([url]http://en.wikipedia.org/wiki/Export_Control_Classification_Number[/url]) is required for every US firm/person who uses encryption in this application which should be (re)exported. so i'm wondering if anyone else have faced this kind...
2012-05-29 08:52:24 PDT by skrmz
A ListView is just a list of objects, it doesn't change unless you change it. A ContainerView does change as objects are added or removed from the container. So you want to build the ObjectSpec from the ContainerView ("cv"), not the ListView ("lv").
2012-05-29 06:42:15 PDT by bnorthls
use config.template property in the virtualmachine object.
2012-05-28 04:53:44 PDT by guru1306
With the fix described below, there can be support for vSphere 5.1/vCenter 5.1 in vijava. In vSphere 5.1 the default SOAP_ACTION header becomes 4.0 in vijava since there is no check for 5.1. This will cause failures on a number of methods that were available or were revised in 5.0 when the soap xml gets sent to the server. SOAPAction: "urn:internalvim25/4.0" Creating a SOA.
2012-05-25 11:53:47 PDT by listenerx37
Hi all, I tried folowing code for monitoring changes to all of my VirtualMachine MOs: [code] ServiceContent sc = si.getServiceContent(); PropertyCollector pc = si.getPropertyCollector(); ViewManager vm = si.getViewManager(); ContainerView cv = vm.createContainerView(si.getRootFolder(), new String[]{"VirtualMachine"}, true); ListView lv =...
2012-05-25 07:23:53 PDT by skymab
I am trying to find vm list using below code ManagedEntity[] vmsl= new InventoryNavigator( rootFolder ).searchManagedEntities( "VirtualMachine" ); int count=0; for( ManagedEntity me : vmsl) { VirtualMachine host = (VirtualMachine) me; count=count+1; System.out.println("Virtual Machine"+count+"Name"+host.getName()); // do stuff... } but...
2012-05-25 06:20:19 PDT by kajalmahata
Run sample code SearchDatastore.java and throwed the following exception: Exception in thread "main" com.vmware.vim25.InvalidRequest at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at...
2012-05-22 01:59:46 PDT by nobody
sjin2008 made 1 file-release changes.
2012-05-18 18:58:03 PDT by sjin2008