clienttest.php revision 28cc8ba3eb149237f8572fc972f8283cae5aa27e
<?php
/*
* Sample client for the VirtualBox webservice, written in PHP.
*
* Run the VirtualBox web service server first; see the VirtualBox
* SDK reference for details.
*
* Copyright (C) 2009-2010 Oracle Corporation
* Contributed by James Lucas (mjlucas at eng.uts.edu.au).
*
* The following license applies to this file only:
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
require_once('./vboxServiceWrappers.php");
//Connect to webservice
$connection = new SoapClient("vboxwebService.wsdl", array('location" => "http://localhost:18083/"));
//Logon to webservice
// Dummy username and password (change to appropriate values or set authentication method to null)
//Get a list of registered machines
//Take a screenshot of the first vm we find that is running
{
{
try
{
list($screenWidth, $screenHeight, $screenBpp) = $display->getScreenResolution(0 /* First screen */);
$filename = 'screenshot.png";
echo "Saving screenshot of " . $machine->name . " (${screenWidth}x${screenHeight}, ${screenBpp}BPP) to $filename\n";
{
{
//$alpha = $image[$start+3];
}
}
}
{
echo $ex->getMessage();
}
$session->unlockMachine();
$machine->releaseRemote();
$session->releaseRemote();
break;
}
}
?>