Hello,

I try to communicate with a sever using a Restful API.
Before authentification establishment, I set up the verify parametre to False.

vca = VCA(host=host, username=username, service_type='vcd', version=VCD_version, verify=False)

If I execute some other fonctions and I have this warinng and the execution go well.

/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/connectionpool.py:768: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
But, when executing this call, I have an error message!
result = GW.save_services_configuration()

Traceback (most recent call last):
File "/root/git/pyvcloud/examples/main.py", line 158, in <module>
result = GW.save_services_configuration()
File "/usr/local/lib/python2.7/dist-packages/pyvcloud/gateway.py", line 86, in save_services_configuration
self.response = requests.post(link[0].get_href(), data=body, headers=self.headers)
File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 108, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 50, in request
response = session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 465, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 573, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py", line 431, in send
raise SSLError(e, request=request)
requests.exceptions.SSLError: [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
Notes:
python version: Python 2.7.3
requets version: requests 2.6.2

Any one have an idea?

Many thanks,
Béchir