-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTC - SSLV3 HandShake Error #129
Comments
@ParthibanSG Please share your snippet and logs. Thanks. |
D:\Anaconda3\envs\PythonProject\python.exe E:/WorkData/python_wks/pythonRTC/main.py During handling of the above exception, another exception occurred: Traceback (most recent call last): During handling of the above exception, another exception occurred: Traceback (most recent call last): Process finished with exit code 1 |
I'm facing the same problem here and I don't no how do dealing with. myclient = RTCClient(url, username, password, ends_with_jazz=False) |
@petersonsource Actually all the requests has disabled verifying ca bundles. Above error may be caused by the cipher, I guess. Please try to add below to requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL'
try:
requests.packages.urllib3.contrib.pyopenssl.util.ssl_.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL'
except AttributeError:
# no pyopenssl support used / needed / available
pass |
I am using CLM 6.0.2 version and it is a stand-alone installation with no proxy server. I created sample workitems for testing RTCClient python package. I tried retrieving workitem via cURL and it works.
Additionally, I have my python script similar to the initial code snippet from rtcclient document like connecting to Jazz and getting a workitem. However, authentication to CLM is not happening and python script throws SSLV3 handshake error
raise SSLError(e, request=request)
requests.exceptions.SSLError: HTTPSConnectionPool(host='sampleclm.example.com', port=9443): Max retries exceeded with url: /jazz/authenticated/identity (Caused by SSLError(SSLError(1, u'[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:726)'),))
Is there anything missing from my end
The text was updated successfully, but these errors were encountered: