Error “suds.transport.TransportError: HTTP Error 401: Unauthorized” using suds-py3 SOAP client in python3
问题 Trying to write a client in python 3 using suds and ewsclient in order to connect to the Exchange Web Services. I have checked my connection to the WSDL URL using the below CURL command: curl -u username:password -L https://exchange_server/EWS/Services.wsdl -H "Content-Type:text/xml" --ntlm I got back the WSDL xml schema using the above command. My client code is: def test_client(): #variables defined, can't disclose transport = WindowsHttpAuthenticated(username=username, password=password)