VBox SDK and PHP
Posted: 9. Oct 2009, 11:22
Hello!
For a School project i need to create a virtual environment and create a management tool for it. This tools needs to be based on PHP.
Ive downloaded the VBox SDK, downloaded SOAP for php and tried to get some information out of it. Here is my PHP code, can someone out there please help me to resolve this issue?
Thanks in advance!
Bye!
ThisUserNameIsTaken
For a School project i need to create a virtual environment and create a management tool for it. This tools needs to be based on PHP.
Ive downloaded the VBox SDK, downloaded SOAP for php and tried to get some information out of it. Here is my PHP code, can someone out there please help me to resolve this issue?
Code: Select all
<?php
$client = new SOAPClient('vboxwebService.wsdl');
try {
$result = $client->IVirtualBox->getGuestOSType();
var_dump($result);
} catch (SOAPFault $f) {
print $f->faultstring;
}
?>
Bye!
ThisUserNameIsTaken