[Fedora-suds-list] Connection time out

Matt C mcauthorn at gmail.com
Fri Nov 20 15:44:03 UTC 2009


I think it may have to do with this.

In [24]: urllib2.socket.setdefaulttimeout ?
Type:           builtin_function_or_method
Base Class:     <type 'builtin_function_or_method'>
String Form:    <built-in function setdefaulttimeout>
Namespace:      Interactive
Docstring:
    setdefaulttimeout(timeout)

Set the default timeout in floating seconds for new socket objects.
A value of None indicates that new socket objects have no timeout.
When the socket module is first imported, the default is None.
#########

So if the default timeout is set to none, you're likely stuck dealing
with the default TCP/IP socket timeouts on the OS.

-Matt

On Fri, Nov 20, 2009 at 10:38 AM, Jerzy Orlowski <jerzyo at genesilico.pl> wrote:
> I've already tried it and it does not work. This was a temporary hack and is
> not supported
>
> Is it possible to set a default timeout in suds when calling urllib2.open()?
>
> Jerzy
>
> Matt C wrote:
>>
>> I'm not sure if this will work for you, it may be worth a shot - see
>> the 'missing manual' for urllib2, which shows you a way to set global
>> socket options:
>> #########################
>> import socket
>> import urllib2
>>
>> # timeout in seconds
>> timeout = 10
>> socket.setdefaulttimeout(timeout)
>>
>> # this call to urllib2.urlopen now uses the default timeout
>> # we have set in the socket module
>> req = urllib2.Request('http://www.voidspace.org.uk')
>> response = urllib2.urlopen(req)
>> ########################
>>
>> Something like this in your Suds script may help, and is worth a shot.
>>
>> Please post back if this works, and good luck!
>> -Matt
>>
>> On Fri, Nov 20, 2009 at 10:10 AM, Jerzy Orlowski <jerzyo at genesilico.pl>
>> wrote:
>>
>>>
>>> Hi
>>>
>>> My service takes ~5 minutes time. When I call it, I get:
>>>
>>> Traceback (most recent call last):
>>>  File "test_soap_global2.py", line 2151, in <module>
>>>  result=client.service.soap_create_model(INPUT_PDB, INPUT_ALIGNMENT,
>>> TEMP_CHAIN_NAME, MODEL_CHAIN_NAME)
>>>  File "build/bdist.linux-x86_64/egg/suds/client.py", line 537, in
>>> __call__
>>>  File "build/bdist.linux-x86_64/egg/suds/client.py", line 597, in invoke
>>>  File "build/bdist.linux-x86_64/egg/suds/client.py", line 622, in send
>>>  File "build/bdist.linux-x86_64/egg/suds/transport/http.py", line 85, in
>>> send
>>>  File "build/bdist.linux-x86_64/egg/suds/transport/http.py", line 107, in
>>> __open
>>>  File "/usr/lib/python2.6/urllib2.py", line 389, in open
>>>  response = self._open(req, data)
>>>  File "/usr/lib/python2.6/urllib2.py", line 407, in _open
>>>  '_open', req)
>>>  File "/usr/lib/python2.6/urllib2.py", line 367, in _call_chain
>>>  result = func(*args)
>>>  File "/usr/lib/python2.6/urllib2.py", line 1146, in http_open
>>>  return self.do_open(httplib.HTTPConnection, req)
>>>  File "/usr/lib/python2.6/urllib2.py", line 1121, in do_open
>>>  raise URLError(err)
>>> urllib2.URLError: <urlopen error timed out>
>>>
>>>
>>> Jerzy Orlowski
>>>
>>> _______________________________________________
>>> fedora-suds-list mailing list
>>> fedora-suds-list at redhat.com
>>> https://www.redhat.com/mailman/listinfo/fedora-suds-list
>>>
>>>
>>
>>
>>
>>
>
>




More information about the suds mailing list