Pages

Friday 20 November 2009

New VMLab Lab Manager CakePHP Component

Just submitted an article on a component that allows a developer to interact with VMWare LabManager 4.0 within CakePHP using the VMWare LabManager 4.0 SOAP API.

This article assumes that the user is familiar with SOAP, CakePHP, and VMWare LabManager. The article is located at the CakePHP Bakery (pending approval)

The Controller




class LabManagerController extends AppController {
var $name = 'LabManager';
var $pageTitle = "VM Lab Manager Assistant";
var $components = array('LabManager');

function index() {
$libs = $this->LabManager->getLibraryConfigurationsList();
pr($libs); // print the library configuration list
}
}


The Component


http://bakery.cakephp.org/articles/view/vmware-labmanager-cakephp-soap-api-component (pending approval)

1 comment:

  1. If I coummnicated I could thank you enough for this, I'd be lying.

    ReplyDelete