Closed GoogleCodeExporter closed 9 years ago
I called SoapClient in the following syntax:
'''
soapclient = SoapClient(
location = 'http://localhost/otrs/nph-genericinterface.pl/Webservice/soap',
action = 'http://localhost/otrs/nph-genericinterface.pl/Webservice/soap',
namespace = 'somenamespace',
soap_ns='soap', trace = True, ns = False, exceptions=True)
'''
Original comment by MKaj...@gmail.com
on 27 Jul 2012 at 6:24
Mkajbaf: can you test the latest version from the repository (1.07)
There are many changes that aren't released yet (pysimplesoap 1.05 is old)
I'll release a more recent version ASAP
Original comment by reingart@gmail.com
on 28 Jul 2012 at 12:38
Tested with a fresh clone from the repository. Still fails
Traceback (most recent call last):
File "./list-meetings.py", line 17, in <module>
response = client.getMeetings()
File "/home/stbot/runtime.dev/pysimplesoap/client.py", line 145, in <lambda>
return lambda self=self, *args, **kwargs: self.call(attr,*args,**kwargs)
File "/home/stbot/runtime.dev/pysimplesoap/client.py", line 219, in call
raise SoapFault(unicode(response.faultcode), unicode(response.faultstring))
pysimplesoap.client.SoapFault: Client.TypeError: 'NoneType' object is not
callable
Original comment by fgime...@gmail.com
on 29 Nov 2012 at 1:00
You have to remove TIMEOUT declared at top of client.py (line# 20) and need to
add below import
from transport import TIMEOUT
It will resolve this issue.
Original comment by pvshew...@gmail.com
on 13 Feb 2013 at 8:57
this seems to be fixed (TIMEOUT is removed if httplib2 is not available)
Please download and test the latest source code from the repository until the
release:
https://pysimplesoap.googlecode.com/archive/default.zip
Original comment by reingart@gmail.com
on 22 Jan 2014 at 3:25
Original issue reported on code.google.com by
MKaj...@gmail.com
on 27 Jul 2012 at 6:17