Hi Paul,
I had a look at what I guess you posted in ticket 320.
You seem to be do logging because the code (according to what you posted) fails when trying to log the request that is about to be sent.
The code is failing at suds/transport/__init__.py
def __str__(self): s = [] s.append('URL:%s' % self.url) s.append('HEADERS: %s' % self.headers) s.append('MESSAGE:') s.append(self.message) --> return '\n'.join(s) <-- FAILING HERE
Which is surprising given that list "s" has been created on the stack.
I tried the following code snippet and it works:
s = [] print '\n'.join(s)
This really seems to have nothing to do with gzip itself.
Could you provide any more info?
Best regards
Daniel
On Wed, Jun 23, 2010 at 11:20, paul@kilgobnet.com wrote:
Hi, I've a ticket open here: https://fedorahosted.org/suds/ticket/320explaining the problems I'm having getting SUDS to work with Gzip encoded rexponses. If anyone has any experiance getting this working could you take a look and spot where I'm going wrong please.
Thanks,
Paul
suds mailing list suds@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/suds