Home
last modified time | relevance | path

Searched refs:httpClient (Results 1 – 2 of 2) sorted by path

/dokuwiki/inc/Remote/IXR/
H A DClient.php18 protected $httpClient;
34 $this->httpClient = new HTTPClient();
35 $this->httpClient->timeout = $timeout;
48 $this->httpClient->headers = array_merge($this->httpClient->headers, $this->headers);
50 if (!$this->httpClient->sendRequest($this->posturl, $xml, 'POST')) {
51 $this->handleError(-32300, 'transport error - ' . $this->httpClient->error);
56 if ($this->httpClient->status < 200 || $this->httpClient->status > 206) {
57 $this->handleError(-32300, 'transport error - HTTP status ' . $this->httpClient
19 protected $httpClient; global() variable in dokuwiki\\Remote\\IXR\\Client
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php67 $httpClient = new DokuHTTPClient();
68 $status = $httpClient->sendRequest($this->submitUrl, ['data' => $data], 'POST');
70 $error = $httpClient->error;