public function GetAppList()
 {
     $request = new ServiceRequest($this->_configuration);
     $params = array();
     $request->setMethodParams($params);
     $response = $request->CallManagerService("rustici.application.getAppList");
     $appData = new ApplicationData(null);
     // Return the subset of the xml starting with the top <summary>
     $appArray = $appData->ConvertToApplicationDataList($response);
     return $appArray;
 }