implementation = $implementation; } // fn /** * It will json encode version of the input object * * @param array $input - assoc array of input values: key = param name, value = param type * @return String - print's $input object */ function generateResponse($input){ print_r($input); } // fn /** * This method calls functions on the implementation class and returns the output or Fault object in case of error to client * * @return unknown */ function serve(){ if(empty($_REQUEST['method']) || !method_exists($this->implementation, $_REQUEST['method'])){ if (empty($_REQUEST['method'])) { echo '
';
				$reflect = new ReflectionClass(get_class($this->implementation));
				$restWSDL = $reflect->__toString();
				$restWSDL = preg_replace('/@@.*/', "", $restWSDL);
				echo $restWSDL;
			}else{
				$er = new SoapError();
				$er->set_error('invalid_call');
				$this->fault($er);
			}
		}else{
			$method = $_REQUEST['method'];
			return  $this->implementation->$method();
		} // else
	} // fn
	
	/**
	 * This function sends response to client containing error object
	 *
	 * @param SoapError $errorObject - This is an object of type SoapError
	 * @access public
	 */
	function fault($errorObject){
		$this->faultServer->generateFaultResponse($errorObject);
		
	} // fn
	
	function generateFaultResponse($errorObject){
		//ob_clean();
		$GLOBALS['log']->info('In SugarRest->fault. Setting fault object on response');
		header('HTTP/1.1 500 Internal Server Error');
		header('Content-Type: text/html; charset="ISO-8859-1"');
		echo '
500 Internal Server Error
'; if(is_object($errorObject)){ $error = $errorObject->number . ': ' . $errorObject->name . '
' . $errorObject->description; $GLOBALS['log']->error($error); echo $error; }else{ $GLOBALS['log']->error(var_export($errorObject, true)); print_r($errorObject); } // else } } // clazz