Example #1
0
 /**
  * Retrieves the report definition for a report.
  * @param string $Report The full path name of the report
  * @return byte[] A byte array of the report definition.
  */
 public function GetReportDefinition($Report)
 {
     $parameters = array('Report' => $Report);
     try {
         $stdObject = $this->_soapHandle_Mgt->GetReportDefinition($parameters);
         $objectVars = get_object_vars($stdObject);
         return $objectVars['Definition'];
     } catch (SoapFault $soapFault) {
         self::ThrowReportException($soapFault);
     }
 }