0

我在 GAE python 上使用SUDS WSDL(SOAP) Web 服务。

& 试图使用这个46.51.221.138/PBExternalServices/v1/soap?wsdl

这是Py代码

from suds.client import Client
client = Client(url) 
print client

但是它在控制台上抛出了一些错误,

  Traceback (most recent call last):
  File "soap.py", line 14, in <module>
    client = Client(url)
      File "build\bdist.win32\egg\suds\client.py", line 112, in __init__
      File "build\bdist.win32\egg\suds\reader.py", line 152, in open
      File "build\bdist.win32\egg\suds\wsdl.py", line 159, in __init__
      File "build\bdist.win32\egg\suds\wsdl.py", line 220, in build_schema
      File "build\bdist.win32\egg\suds\xsd\schema.py", line 95, in load
      File "build\bdist.win32\egg\suds\xsd\schema.py", line 323, in dereference
      File "build\bdist.win32\egg\suds\xsd\sxbasic.py", line 469, in dependencies
    suds.TypeNotFound: Type not found: '(GetAccountBalanceFaultResponse, http://www.
    payback.net/lmsglobal/xsd/v1/types, )'

注意:我读了一些需要使用的地方,suds.xsd.doctor因为这个 WSDL 似乎以不同的方式被破坏,但不幸的是我不知道如何在suds.xsd.doctor这里使用它。

所以我们中的任何人之前都遇到过这个问题并得到了解决?那么请提出适当的解决方案来解决同样的问题。

温暖的毕业生,

尼克斯

4

1 回答 1

2

以下对我有用:

from suds.client import Client
wsdl_url = 'http://46.51.221.138/PBExternalServices/v1/soap?wsdl'
client = Client(wsdl_url, autoblend=True)
于 2013-03-09T02:17:16.820 回答