From 986c2df7916b4ce5442cae35b98648695aede9ba Mon Sep 17 00:00:00 2001 From: Ionut Turturica Date: Sat, 23 Feb 2013 13:07:19 -0800 Subject: [PATCH] In some odd cases HTTPResponse returns None instead of a file handle. Raise HTTPError when that happens. --- src/SOAPpy/Client.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/SOAPpy/Client.py b/src/SOAPpy/Client.py index 3749879..8662989 100644 --- a/src/SOAPpy/Client.py +++ b/src/SOAPpy/Client.py @@ -280,13 +280,17 @@ class HTTPTransport: except: message_len = -1 + f = r.getfile() + if f is None: + raise HTTPError(code, "Empty response from server\nCode: %s\nHeaders: %s" % (msg, headers)) + if message_len < 0: # Content-Length missing or invalid; just read the whole socket # This won't work with HTTP/1.1 chunked encoding - data = r.getfile().read() + data = f.read() message_len = len(data) else: - data = r.getfile().read(message_len) + data = f.read(message_len) if(config.debug): print "code=",code