Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #54865 > unrolled thread

Method not found: 'ServiceSettingSave' in Suds package

Started byAnup Kandalkar <kandalkar.a87@gmail.com>
First post2013-09-26 23:55 -0700
Last post2013-09-28 07:54 +0200
Articles 2 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  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

#54865 — Method not found: 'ServiceSettingSave' in Suds package

FromAnup Kandalkar <kandalkar.a87@gmail.com>
Date2013-09-26 23:55 -0700
SubjectMethod not found: 'ServiceSettingSave' in Suds package
Message-ID<21ab0bd0-adbc-4682-95f3-0152b8e5c558@googlegroups.com>
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'

please help me to solve this issues, for this need to update python packages or any other way.

Thanks

[toc] | [next] | [standalone]


#54927

Fromdieter <dieter@handshake.de>
Date2013-09-28 07:54 +0200
Message-ID<mailman.402.1380347679.18130.python-list@python.org>
In reply to#54865
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".

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web