Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #54927
| From | dieter <dieter@handshake.de> |
|---|---|
| Subject | Re: Method not found: 'ServiceSettingSave' in Suds package |
| Date | 2013-09-28 07:54 +0200 |
| References | <21ab0bd0-adbc-4682-95f3-0152b8e5c558@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.402.1380347679.18130.python-list@python.org> (permalink) |
Anup Kandalkar <kandalkar.a87@gmail.com> writes: > I am trying to create service for the url: > > wsdl_url = https://avatax.avalara.net/Account/Accountsvc.wsdl > > But some error is coming: > > svc = suds.client.Client(url=wsdl_url) > File "/usr/lib/python2.7/dist-packages/suds/client.py", line 114, in __init__ > self.wsdl = reader.open(url) > File "/usr/lib/python2.7/dist-packages/suds/reader.py", line 152, in open > d = self.fn(url, self.options) > File "/usr/lib/python2.7/dist-packages/suds/wsdl.py", line 158, in __init__ > self.resolve() > File "/usr/lib/python2.7/dist-packages/suds/wsdl.py", line 207, in resolve > c.resolve(self) > File "/usr/lib/python2.7/dist-packages/suds/wsdl.py", line 660, in resolve > self.resolvesoapbody(definitions, op) > File "/usr/lib/python2.7/dist-packages/suds/wsdl.py", line 686, in resolvesoapbody > ptop = self.type.operation(op.name) > File "/usr/lib/python2.7/dist-packages/suds/wsdl.py", line 525, in operation > raise MethodNotFound(name) > MethodNotFound: Method not found: 'ServiceSettingSave' This looks to be a bug in the "wsdl". Somewhere, it refers to "ServiceSettingSave" but there is no definition for it. To analyse, I would download the WSDL description (recursively, if necessary to get the full description) and search there for "ServiceSettingSave".
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Method not found: 'ServiceSettingSave' in Suds package Anup Kandalkar <kandalkar.a87@gmail.com> - 2013-09-26 23:55 -0700 Re: Method not found: 'ServiceSettingSave' in Suds package dieter <dieter@handshake.de> - 2013-09-28 07:54 +0200
csiph-web