Exemple #1
0
 /**
  * Create a new XML-RPC client to a remote server
  *
  * @param  string $server      Full address of the XML-RPC service
  *                             (e.g. http://time.xmlrpc.com/RPC2)
  * @param  \Zend\Http\Client $httpClient HTTP Client to use for requests
  * @return void
  */
 public function __construct($server, \Zend\Http\Client $httpClient = null)
 {
     parent::__construct($server, $httpClient);
     $this->setSkipSystemLookup();
 }