Hi,<br><br>I&#39;m trying out Suds to pull some data from a company web server.  The code is pretty simple;<br><br>    wsdl = r&#39;http://[wsdl address here]?wsdl&#39;<br>    client = Client(wsdl)<br><br>The above works fine but only when I&#39;m trying to get a small amount of data.  When I try to request a larger dataset I get a timeout error.  I tried this;<br>
<br>    client = Client(wsdl, timeout=500)<br><br>I think that should increase the timeout to 20 minutes but it doesn&#39;t change it at all.  Are there any examples on how to change the timeout value correctly/<br> 
<br>