如何在python中为soap服务器设置wsdl

时间:2015-05-18 08:58:36

标签: python soap wsdl

我使用SOAPy

为SOAP服务器编写了一个python脚本
from SOAPpy import WSDL, SOAPProxy, SOAPServer, ThreadingSOAPServer, SOAPRequestHandler
import sys

class Hello(object):
    def hello(self):
        return "Hello World"

if __name__ == "__main__":
    s = SOAPServer(addr=('192.168.20.232', 8000))
    wsdl_file = '../wsdl/SendFaxService-me.xml'
    server = WSDL.Proxy(wsdl_file)
    server.show_methods()
    s.registerFunction(Hello().hello)
    s.serve_forever()

我想要为此服务器使用一个WSDL文件。但我不知道如何为此服务器设置WSDL地址。

0 个答案:

没有答案