Skip to content
Snippets Groups Projects
Commit f97def26 authored by Elmar Ludwig's avatar Elmar Ludwig
Browse files

drop "response_timeout" and don't disable SSL verification, fixes #3500

Closes #3500

Merge request studip/studip!2392
parent 39be220d
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,7 @@ class XML_RPC_WebserviceClient extends WebserviceClient
public function __construct($webservice_url)
{
$this->client = new xmlrpc_client($webservice_url);
#$this->client->verifyhost = true;
$this->client->debug = false;
$this->client->verifypeer = false;
$this->client->response_timeout = 7600;
$this->client->return_type = 'phpvals';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment