kartagis / pysimplesoap

Automatically exported from code.google.com/p/pysimplesoap
0 stars 0 forks source link

Got 'timed out' exception in request/get for a remote service #112

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
We have two server that made SOAP request to get a remote service, One server 
will frequently got 'timed out' exception and another seldom got this 
with the same code, I just wondering the root of this exception, is it within 
pysimplesoap or httplib2?

What version of the product are you using? On what operating system?
1.05a and OS is Linux

Please provide any additional information below.

Original issue reported on code.google.com by kong...@gmail.com on 30 Aug 2013 at 9:32

GoogleCodeExporter commented 8 years ago
Maybe you have a networking problem.

You can try differents timeout values in the SoapClient contstructor:

For example:

client = SoapClient(timeout=60)

If will work depending on wich python version you have (it should be >2.6), and 
what extensions (httplib2, pycurl, etc.) you are using.

If you have any further questions, you cand send it to soap@python.org and we 
can discuss them there.

If your problem persist, please attach a test case and a the full debugging log 
messages, including the exception traceback, so we can analyze it,

Original comment by reingart@gmail.com on 13 Sep 2013 at 3:34