Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder3.xlned.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:not': 0.03; "subject:' ": 0.07; '__init__': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'bug': 0.12; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'trying': 0.19; 'header :User-Agent:1': 0.23; 'error': 0.23; 'refers': 0.24; 'looks': 0.24; 'skip:" 40': 0.26; 'skip:" 20': 0.27; 'header:X-Complaints- To:1': 0.27; 'raise': 0.29; 'writes:': 0.31; 'file': 0.32; 'open': 0.33; 'skip:s 30': 0.35; 'definition': 0.35; 'but': 0.35; 'there': 0.35; 'skip:" 50': 0.36; 'method': 0.36; 'charset:us-ascii': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'url:account': 0.60; 'full': 0.61; 'received:217': 0.63; 'subject:skip:S 10': 0.84; 'subject:found': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: dieter Subject: Re: Method not found: 'ServiceSettingSave' in Suds package Date: Sat, 28 Sep 2013 07:54:21 +0200 References: <21ab0bd0-adbc-4682-95f3-0152b8e5c558@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gmane-NNTP-Posting-Host: pd9e0a34f.dip0.t-ipconnect.de User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.22 (linux) Cancel-Lock: sha1:BPQFzxvkM6Z8NB+8TOb2VA7Jlwo= X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1380347679 news.xs4all.nl 16008 [2001:888:2000:d::a6]:42595 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54927 Anup Kandalkar 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".