Skip to content

Commit 0f8a255

Browse files
committed
Merge branch 'master' of github.com:mvantellingen/python-zeep
2 parents 79f78a4 + d3f5396 commit 0f8a255

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/transport.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ If you need to verficate the SSL connection (in case you have a self signed cert
2424
Make sure that the certificate you refer to is a CA_BUNDLE, meaning it contains a root CA and an intermediate CA.
2525
Accepted are only X.509 ASCII files (file extension ``.pem``, sometimes ``crt``). If you have two different files, you must combine them manually into one.
2626

27-
To **disable SSL verification** (not recommended!) you will need to set the ``verify`` attribute of the :class:`requests.Session` to ``False``.
27+
Alternatively, instead of using ``session.verify`` you can use ``session.cert`` if you just want to use an SSL client certificate.
28+
29+
To **disable SSL verification** (not recommended!) you will need to set ``verify`` to ``False``.
2830

2931
.. code-block:: python
3032
@@ -33,6 +35,8 @@ To **disable SSL verification** (not recommended!) you will need to set the ``ve
3335
3436
Remember: this should be only done for testing purposes. Python's ``urllib3`` will warn you with a InsecureRequestWarning.
3537

38+
See :class:`requests.Session` for further details.
39+
3640
Session timeout
3741
---------------
3842

0 commit comments

Comments
 (0)