decode an xmlrpc request
	
	
	
		static array
		
			decodeRequest
		
					(string $xmlcontent)
			
	
			
					- 
				string
				$xmlcontent: the content of the request, in xmlrpc format			
 
				
		
			
	 
	
	 
	
	
decode an xmlrpc response
	
	
	
		static mixed
		
			decodeResponse
		
					(string $xmlcontent)
			
	
			
					- 
				string
				$xmlcontent: the content of the response, in xmlrpc format			
 
				
		
			
	 
	
	 
	
	
encode an xmlrpc error response
	
	
	
		static string
		
			encodeFaultResponse
		
					(string $code, string $message, [string $charset = ''])
			
	
			
					- 
				string
				$code: the error code			
 
					- 
				string
				$message			
 
					- 
				string
				$charset: the charset to use			
 
				
		
			
	 
	
	 
	
	
encode an xmlrpc request
	
	
	
		static string
		
			encodeRequest
		
					(string $methodname, array $params, [string $charset = ''])
			
	
			
					- 
				string
				$methodname			
 
					- 
				array
				$params: method parameters			
 
					- 
				string
				$charset			
 
				
		
			
	 
	
	 
	
	
encode an xmlrpc response
	
	
	
		static string
		
			encodeResponse
		
					(mixed $params, [string $charset = ''])
			
	
			
					- 
				mixed
				$params: the value to stored into the response			
 
					- 
				string
				$charset: the charset to use