suds-py3
suds-py3 copied to clipboard
Mirror of http://svn.fedorahosted.org/svn/suds/trunk/ supporting Python3
I am connecting to EWS, but I get 401 error urllib.error.HTTPError: HTTP Error 401: Anonymous Request Disallowed Below is the code ssl._create_default_https_context = ssl._create_unverified_context logging.basicConfig(level=logging.INFO) logging.getLogger('suds.client').setLevel(logging.DEBUG) url = "https://xxx.xxx.xxx.com/EWS/Services.wsdl" username...
why not use py3 soap service example, only java or other.
I had the same issue as refrenced in this [stackoverflow](https://stackoverflow.com/questions/10207167/python-suds-wrong-namespace-prefix-in-soap-request). Alex Miro explained the issue and provided a work around on suds. I believe it will also work on suds-py3....
There is any way to indicate the SOAP version, in better words, How can indicate what version of XML are going to be read?
I can't use this method, how can I fix it?
@cackharot I've encountered the problem of updating soap request message with a custom MessagePlugin like this (it's just an example): ``` class HelloSOAPWorldPlugin(MessagePlugin): def sending(self, context: MessageContext): context.envelope = b'Hello...
At the moment, the wheel on PyPI ships with all `__pycache__` directories, which does not make much sense. Example: ``` suds/__pycache__/__init__.cpython-38.opt-1.pyc suds/__pycache__/builder.cpython-38.opt-1.pyc suds/__pycache__/cache.cpython-38.opt-1.pyc suds/__pycache__/client.cpython-38.opt-1.pyc suds/__pycache__/compat.cpython-38.opt-1.pyc suds/__pycache__/metrics.cpython-38.opt-1.pyc suds/__pycache__/options.cpython-38.opt-1.pyc suds/__pycache__/plugin.cpython-38.opt-1.pyc suds/__pycache__/properties.cpython-38.opt-1.pyc suds/__pycache__/reader.cpython-38.opt-1.pyc...
I just returned to the suds package because when the client returns a web fault in the suds-py3, he does not call the received function from the message plugin. If...
The [Pypi documentation](https://pypi.org/project/suds-py3/) mentions that suds-py3 v1.4.5.0 is compatible with Python 3. Does this claim that the library is compatible with Python 3.11.x as well? If not, is there a...
Dear Suds developers, Project I am working with a legacy code that is using a slightly older version suds-py3 version 1.4.5.0 The project uses WSDL read queries to a SOAP...