传递 SUDS 方法名称表单变量

Pass SUDS method name form variable

我是 python 的新手,在使用 SUDS 包调用 SOAP 方法时遇到一些问题。 我有这个 Tk gui 应用程序,我从 Treeview 小部件中 select 方法名称并从 Entry 小部件传递参数值。 我可以在变量中获取方法名称,但问题是,如何将变量值作为 SUDS 方法名称传递?

我有这个代码:

from tkinter import *
from tkinter import ttk
import sys
from suds.client import *


class SoapClass:

    def __init__(self, master):

        self.client = Client('http://www.webservicex.net/ConvertWeight.asmx?WSDL', username='', password='', faults=False)

        Button(master, text='Call', command=self.request).pack()

    def request(self):

        methodName = 'ConvertWeight'

        #Here I would like to pass methodName variable
        response = self.client.service.ConvertWeight(80, 'Kilograms', 'Grams')

        print(response)

root = Tk()
app = SoapClass(root)


root.mainloop()

我想这样做:

methodName = 'ConvertWeight'

response = self.client.service.methodName(80, 'Kilograms', 'Grams')

当然 Web 服务给我:

提高 MethodNotFound(qn)

suds.MethodNotFound: 找不到方法:'ConvertWeights.ConvertWeightsSoap.methodName'

我该怎么做?这甚至可能吗?

在网上搜索了一段时间后,我找到了解决方案。

起初我查了这个:

params = client.factory.create('ConvertWeight')

然后向该对象添加所需的参数。

不幸的是没有运气,因为在我调查时,我的 WSDL 被破坏了,但是 ImportDoctor 无法修复我的 WSDL 并且在调用 client.factory.create() 时,错误说 "Type not Found" 这清楚地表明 WSDL 有问题。

总之我找到了另一个解决方案:

MethodToExecute = getattr(self.client.service, methodName)

try:
    response = MethodToExecute(*array)
except WebFault as e:
    response = e

所以现在我可以调用我选择的任何方法,并添加任意多的参数。

希望我的解决方案对某些人有所帮助。