XMLRPC_ResponseStatus Enumerated List
See Also Example Applies To
This enumerated list contains the XMLRPCResponse object's possible response states which are obtainable from the Status property.
XMLRPC_NOTINITIALISED
Value 0 - The inital state of the response before any of the properties have been set, i.e. usually before the request has been sent.
XMLRPC_HTTPERROR
Value 1 - There has been an HTTP error, i.e. the HTTP headers have returned a number other than 200. Look in the HTTPStatusCode and HTTPHeaders properties of the XMLRPCResponse object for more information.
XMLRPC_FAULTRETURNED
Value 2 - A fault has been returned by the remote XML-RPC server. Look in the Fault property of the XMLRPCResponse object for more information.
XMLRPC_PARAMSRETURNED
Value 3 - The call to the remote XML-RPC server has been successful. Look in the Params property of the XMLRPCResponse object for more information.
XMLRPC_XMLPARSERERROR
Value 4 - The call to the remote XML-RPC server has returned unexpected XML. Look in the XMLParseError and XMLResponse properties of the XMLRPCResponse object for more information.
|