XmlRpc Request object -- Request via HTTP

Extends Zend_XmlRpc_Request to accept a request via HTTP. Request is built at construction time using a raw POST; if no data is available, the request is declared a fault.

category Zend
package Zend_XmlRpc
copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
license New BSD License
version $Id$
inherited_from \Zend_XmlRpc_Request

 Methods

Constructor

__construct() : void

Attempts to read from php://input to get raw POST request; if an error occurs in doing so, or if the XML is invalid, the request is declared a fault.

inherited_from \Zend_XmlRpc_Request::__construct()

Create a new XML-RPC request

__construct(string $method = null, array $params = null
Inherited

Parameters

$method

string

(optional)

$params

array

(optional)

Return XML request

__toString() : string
Inherited

Returns

string

Add a parameter to the parameter stack

addParam(mixed $value, string $type = null) : void
Inherited

Adds a parameter to the parameter stack, associating it with the type $type if provided

Parameters

$value

mixed

$type

string

Optional; type hinting

Retrieve current request encoding

getEncoding() : string
Inherited

Returns

string

Retrieve the fault response, if any

getFault() : null | \Zend_XmlRpc_Fault
Inherited

Returns

null\Zend_XmlRpc_Fault

Retrieve the full HTTP request, including headers and XML

getFullRequest() : string

Returns

string

Get headers

getHeaders() : array

Gets all headers as key => value pairs and returns them.

Returns

array

Retrieve call method

getMethod() : string
Inherited

Returns

string

Retrieve the array of parameters

getParams() : array
Inherited

Returns

array

Retrieve the raw XML request

getRawRequest() : string

Returns

string

Return parameter types

getTypes() : array
Inherited

Returns

array

Does the current request contain errors and should it return a fault response?

isFault() : boolean
Inherited

Returns

boolean

Load XML and parse into request components

loadXml(string $request) : boolean
Inherited

Parameters

$request

string

Returns

booleanTrue on success, false if an error occurred.

Create XML request

saveXml() : string
Inherited

Returns

string

Set encoding to use in request

setEncoding(string $encoding) : \Zend_XmlRpc_Request
Inherited

Parameters

$encoding

string

Returns

\Zend_XmlRpc_Request

Set method to call

setMethod(string $method) : boolean
Inherited

Parameters

$method

string

Returns

booleanReturns true on success, false if method name is invalid

Set the parameters array

setParams() : void
Inherited

If called with a single, array value, that array is used to set the parameters stack. If called with multiple values or a single non-array value, the arguments are used to set the parameters stack.

Best is to call with array of the format, in order to allow type hinting when creating the XMLRPC values for each parameter: $array = array( array( 'value' => $value, 'type' => $type )[, ... ] );

access public

Retrieve method parameters as XMLRPC values

_getXmlRpcParams() : array
Inherited

Returns

array

 Properties

 

Request character encoding

$_encoding : string

Default

'UTF-8'
 

Fault object, if any

$_fault : \Zend_XmlRpc_Fault

Default

null
 

Array of headers

$_headers : array

Default

 

Method to call

$_method : string

Default

 

Method parameters

$_params : array

Default

array()
 

XML-RPC type for each param

$_types : array

Default

array()
 

Raw XML as received via request

$_xml : string

Default

inherited_from \Zend_XmlRpc_Request::_xml
 

XML request

$_xml : string

Default

 

XML-RPC request params

$_xmlRpcParams : array

Default

array()