Zend Framework  1.12
Public Member Functions | Protected Attributes | List of all members
Zend_XmlRpc_Request_Stdin Class Reference

Public Member Functions

 __construct ()
 Constructor.
 
 getRawRequest ()
 Retrieve the raw XML request.
 
- Public Member Functions inherited from Zend_XmlRpc_Request
 __construct ($method=null, $params=null)
 Create a new XML-RPC request.
 
 setEncoding ($encoding)
 Set encoding to use in request.
 
 getEncoding ()
 Retrieve current request encoding.
 
 setMethod ($method)
 Set method to call.
 
 getMethod ()
 Retrieve call method.
 
 addParam ($value, $type=null)
 Add a parameter to the parameter stack.
 
 setParams ()
 Set the parameters array.
 
 getParams ()
 Retrieve the array of parameters.
 
 getTypes ()
 Return parameter types.
 
 loadXml ($request)
 Load XML and parse into request components.
 
 isFault ()
 Does the current request contain errors and should it return a fault response?
 
 getFault ()
 Retrieve the fault response, if any.
 
 saveXml ()
 Create XML request.
 
 __toString ()
 Return XML request.
 

Protected Attributes

 $_xml
 
- Protected Attributes inherited from Zend_XmlRpc_Request
 $_encoding = 'UTF-8'
 
 $_method
 
 $_xml
 
 $_params = array()
 
 $_fault = null
 
 $_types = array()
 
 $_xmlRpcParams = array()
 

Additional Inherited Members

- Protected Member Functions inherited from Zend_XmlRpc_Request
 _getXmlRpcParams ()
 Retrieve method parameters as XMLRPC values.
 

Constructor & Destructor Documentation

__construct ( )

Constructor.

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

Returns
void

Member Function Documentation

getRawRequest ( )

Retrieve the raw XML request.

Returns
string

Member Data Documentation

$_xml
protected