Home
last modified time | relevance | path

Searched full:httpclient (Results 1 – 25 of 130) sorted by relevance

123456

/dokuwiki/inc/Remote/IXR/
H A DClient.php5 use dokuwiki\HTTP\HTTPClient; alias
10 * This implements a XML-RPC client using our own HTTPClient
12 * Note: this now inherits from the IXR library's client and no longer from HTTPClient. Instead composition
17 /** @var HTTPClient */
18 protected $httpClient;
34 $this->httpClient = new HTTPClient();
35 $this->httpClient->timeout = $timeout;
48 $this->httpClient->headers = array_merge($this->httpClient
19 protected $httpClient; global() variable in dokuwiki\\Remote\\IXR\\Client
[all...]
/plugin/jdraw/src/com/hammurapi/jdraw/
H A DJDrawApplet.java17 // private DefaultHttpClient httpClient;
28 // httpClient = new DefaultHttpClient(cm, params); in init()
32 // httpClient.getConnectionManager().getSchemeRegistry(), in init()
34 // httpClient.setRoutePlanner(routePlanner); in init()
37 // httpClient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); in init()
45 BasicGraphEditor.Config config = new BasicGraphEditor.Config(this); //, httpClient); in start()
56 // if (httpClient!=null) {
57 // httpClient.getConnectionManager().shutdown();
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXMLRPCClient.php26 * requires HTTPClient, XML and XMLDocument classes
29 import("org.active-link.net.HTTPClient");
39 * @extends HTTPClient
40 * @requires HTTPClient, XML, XMLDocument
41 * @see HTTPClient
44 class XMLRPCClient extends HTTPClient {
57 $this->HTTPClient($host, $port);
67 // this call not necessary if we can somehow update body before HTTPClient->sendRequest
82 // this call not necessary if we can somehow update body before HTTPClient->sendRequest
94 // this call not necessary if we can somehow update body before HTTPClient->sendRequest
[all …]
/plugin/webdav/vendor/sabre/event/lib/
H A Dcoroutine.php14 * $promise = $httpClient->request('GET', '/foo');
17 * return $httpClient->request('DELETE','/foo');
21 * return $httpClient->request('PUT', '/foo');
34 * yield $httpClient->request('GET', '/foo');
35 * yield $httpClient->request('DELETE', /foo');
36 * yield $httpClient->request('PUT', '/foo');
/plugin/issuelinks/classes/
H A DHTTPRequestException.php19 public function __construct($message, \DokuHTTPClient $httpClient, $url, $method) argument
21 $this->code = $httpClient->status;
22 $this->httpError = $httpClient->error;
23 $this->responseBody = $httpClient->resp_body;
/plugin/evesso/phpoauthlib/src/OAuth/
H A DServiceFactory.php31 protected $httpClient; variable in OAuth\\ServiceFactory
50 * @param ClientInterface $httpClient
54 public function setHttpClient(ClientInterface $httpClient) argument
56 $this->httpClient = $httpClient;
110 if (!$this->httpClient) {
112 $this->httpClient = new StreamClient();
167 $this->httpClient,
227 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/
H A DServiceFactory.php31 protected $httpClient; variable in OAuth\\ServiceFactory
50 * @param ClientInterface $httpClient
54 public function setHttpClient(ClientInterface $httpClient) argument
56 $this->httpClient = $httpClient;
112 if (!$this->httpClient) {
114 $this->httpClient = new StreamClient();
177 $this->httpClient,
238 return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $baseApiUri);
/plugin/pdb/classes/
H A D_NCBI.php11 var $HttpClient; variable in ncbi
17 $this->HttpClient = new DokuHTTPClient();
28 $summary = $this->HttpClient->get($url);
37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/plugin/pubchem/classes/
H A D_NCBI.php11 var $HttpClient; variable in ncbi
17 $this->HttpClient = new DokuHTTPClient();
28 $summary = $this->HttpClient->get($url);
37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/plugin/pubmed/classes/
H A D_NCBI.php11 var $HttpClient; variable in ncbi
17 $this->HttpClient = new DokuHTTPClient();
28 $summary = $this->HttpClient->get($url);
37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/
H A DAbstractService.php21 protected $httpClient; variable in OAuth\\Common\\Service\\AbstractService
28 * @param ClientInterface $httpClient
33 ClientInterface $httpClient, argument
37 $this->httpClient = $httpClient;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/
H A DAbstractService.php21 protected $httpClient; variable in OAuth\\Common\\Service\\AbstractService
28 * @param ClientInterface $httpClient
33 ClientInterface $httpClient, argument
37 $this->httpClient = $httpClient;
/dokuwiki/lib/plugins/extension/helper/
H A Drepository.php51 $httpclient = new DokuHTTPClient();
52 $data = $httpclient->post(self::EXTENSION_REPOSITORY_API, $request_data);
83 $httpclient = new DokuHTTPClient();
84 $httpclient->timeout = 5;
85 $data = $httpclient->get(self::EXTENSION_REPOSITORY_API . '?cmd=ping');
120 $httpclient = new DokuHTTPClient();
121 $data = $httpclient->get(self::EXTENSION_REPOSITORY_API . '?fmt=json&ext[]=' . urlencode($name));
154 $httpclient = new DokuHTTPClient();
155 $data = $httpclient->post(self::EXTENSION_REPOSITORY_API, $query);
/plugin/zerolinecss/
H A Daction.php14 private $httpClient = null; variable in action_plugin_zerolinecss
38 $data = $this->httpClient->get( DOKU_URL . $link['href'] );
58 if ( $this->httpClient != null ) {
62 $this->httpClient = new dokuwiki\HTTP\DokuHTTPClient();
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/
H A DHTTPClient.php31 * HTTPClient class provides HTTP request functionality and ability to retrieve response
32 * @class HTTPClient
41 class HTTPClient extends Socket { class
57 * @method HTTPClient
61 function HTTPClient($host, $port = 80) { function in HTTPClient
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DHttpClientCache.php30 private static $httpClient; variable in Google\\Auth\\HttpHandler\\HttpClientCache
42 self::$httpClient = $client;
52 return self::$httpClient;
/plugin/keywords/action/
H A Dkeywords.php77 $httpClient = new DokuHTTPClient();
78 // $httpClient->debug = true;
79 $httpClient->headers = [
83 $status = $httpClient->sendRequest($this->CHATGPT_API_URL, json_encode( [
119 $data = json_decode( $httpClient->resp_body );
122 …Logger::error( "An error occurred during the Chat GPT call", $httpClient->error, __FILE__, __LINE_…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DPocket.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
63 $responseBody = $this->httpClient->retrieveResponse(
95 $responseBody = $this->httpClient->retrieveResponse(
H A DBuffer.php22 ClientInterface $httpClient, argument
27 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
85 $responseBody = $this->httpClient->retrieveResponse(
121 $responseBody = $this->httpClient->retrieveResponse(
/plugin/multiorphan/action/
H A Dmultiorphan.php356 $httpClient = new dokuwiki\HTTP\DokuHTTPClient();
357 $httpClient->keep_alive = false; // just close it already.
358 $httpClient->max_bodysize = 0;
359 $data = $httpClient->sendRequest( $event->data['entryID'], null, 'GET' );
360 …$event->data['exists'] = ( $httpClient->status >= 200 && $httpClient->status <= 200 ) || $httpClie…
361 $event->data['status'] = $httpClient->status;
363 if ( !empty( $httpClient->error ) ) {
364 $event->data['error'] = $httpClient->error;
/plugin/siteexport/inc/
H A Dhttpproxy.php21 if ( file_exists(DOKU_INC . 'inc/HTTPClient.php') ) {
22 require_once(DOKU_INC . 'inc/HTTPClient.php');
89 …k, this is evil. We read the login information of the current user and forward it to the HTTPClient
123 * Remeber HTTPClient Cookie after successfull authentication
146 $this->debugClass->message("[HTTPClient] " . $info, $var, 1);
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DAbstractCaptureApplet.java249 DefaultHttpClient httpClient = new DefaultHttpClient(); in post() local
252 httpClient.getConnectionManager().getSchemeRegistry(), in post()
254 httpClient.setRoutePlanner(routePlanner); in post()
256 return httpClient.execute(createRequest(fileName, bin)); in post()
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DBasicGraphEditor.java944 public Config(JApplet applet /*, HttpClient httpClient*/) {
946 // this.httpClient = httpClient;
960 // private HttpClient httpClient;
962 // public HttpClient getHttpClient() {
963 // return httpClient;
H A DBasicGraphEditor.java.bak913 public Config(JApplet applet /*, HttpClient httpClient*/) {
915 // this.httpClient = httpClient;
929 // private HttpClient httpClient;
931 // public HttpClient getHttpClient() {
932 // return httpClient;
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php34 * @param ClientInterface $httpClient
44 ClientInterface $httpClient, argument
50 parent::__construct($credentials, $httpClient, $storage);
114 $responseBody = $this->httpClient->retrieveResponse(
174 return $this->httpClient->retrieveResponse($uri, $body, $extraHeaders, $method);
212 $responseBody = $this->httpClient->retrieveResponse(

123456