mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-30 19:02:27 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@69 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			19 lines
		
	
	
		
			484 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			484 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * This file works in conjunction with lib/XCAT/webservice/XCATWebservice.class.php
 | |
|  */
 | |
| 
 | |
| require_once("lib/XCAT/webservice/XCATWebservice.class.php");
 | |
| 
 | |
| $methodName = $_REQUEST["method"];
 | |
| 
 | |
| $parameterNames = XCATWebservice::getMethodParameters($methodName);
 | |
| $parameterHash = array();
 | |
| 
 | |
| foreach($parameterNames as $parameterName) {
 | |
| 	$parameterHash[$parameterName] = $_REQUEST[$parameterName];
 | |
| }
 | |
| 
 | |
| XCATWebservice::processRequest($methodName, $parameterHash);
 | |
| ?>
 |