Example #1
0
 /**
  * Get Customer Video Camera Info
  *
  * @param GetCustomerVcamRequest $args        	
  * @return GetCustomerVcamResponse
  */
 function get_customer_vcam($args)
 {
     try {
         // throw new Exception(var_export($args, true));
         $getCustomerVcamResponse = new GetCustomerVcamResponse();
         $getCustomerVcamResponse->vcam_info = Controller::get_customer_vcam($args);
         // throw new Exception(var_export($getCustomerVcamResponse, true));
         return $getCustomerVcamResponse;
     } catch (Exception $e) {
         return new SoapFault(__METHOD__, $e->getMessage());
     }
 }