尝试使用 Python Suds 进行 SOAP 调用。它可以很好地导入 WSDL,它生成的客户端看起来格式正确,但我无法访问这些方法。
Suds文档描述了这样的方法调用:
client.service.Company.GetQueue()
但我得到的所有变化都是:
suds.MethodNotFound:找不到方法:'OmnitureWebService.OmnitureWebServicePort.Company'
这是我创建的客户端的变量转储。您可以看到这些方法,但我如何访问它们?我试过指定端口,指定前缀,似乎没有任何效果。感谢您对此的任何帮助。
> obj._ServiceSelector__client = Suds (
> https://fedorahosted.org/suds/ )
> version: 0.4 GA build: R699-20100913
>
> Service ( OmnitureWebService )
> tns="http://www.omniture.com/"
> Prefixes (2)
> ns0 = "http://schemas.xmlsoap.org/soap/encoding/"
> ns1 = "http://www.omniture.com/" Ports (1):
> (OmnitureWebServicePort)
> Methods (173):
> CodeManager.DeleteCodeArchive(xs:int
> archive_id, )
> CodeManager.GenerateCode(xs:string
> char_set, xs:string code_type, xs:int
> cookie_domain_periods, xs:string
> currency_code, xs:string rsid, xs:int
> secure, )
> CodeManager.GetCodeArchives(int_array
> archive_id_list, xs:string
> binary_encoding, xs:int
> populate_code_items, )
> CodeManager.SaveCodeArchive(xs:string
> archive_description, xs:int
> archive_id, xs:string archive_name,
> code_items code, )
> Company.CancelQueueItem(xs:int qid, )
> Company.DownloadProduct(productType
> productType, )
> Company.GetEndpoint(xs:string company,
> )
> Company.GetQueue()
> Company.GetReportSuites(string_array
> rs_types, xs:string sp, )
> Company.GetTokenCount()
> Company.GetTokenUsage()
> Company.GetTrackingServer(xs:string
> rsid, )
> Company.ResetTokenCount(xs:string
> auth_key, )