I am trying to use suds
(version 0.6) to connect to a web service,
from suds.client import Client
client = Client(SOAP_URL, timeout=10)
now I sometimes get timeout
error, so I am wondering how to catch all errors using suds
when connecting to a web service, and so then in the catch block I can reconnect the web service.