We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can't set the timeout options in client
The text was updated successfully, but these errors were encountered:
I guess this might not be relevant any more (maybe you have already solved the issue), but I think the following should work:
from suds.client import Client wsdl_url="https://example.com/wsdl" client = Client(wsdl_url, timeout=10) # or client = Client(wsdl_url) client.set_options(timeout=10)
Sorry, something went wrong.
Also for handling a timeout error you need to use the following commands:
from socket import timeout try: response = client.service.some_request_here(some_data_here) except timeout: proccess_exception_here()
No branches or pull requests
I can't set the timeout options in client
The text was updated successfully, but these errors were encountered: