我需要知道SOAPpy做了什么请求。有人知道怎么做吗?
SOAPpy有一个配置对象,可以用来设置不同的属性。要查看请求,您可以使用dumpSOAPOut
或dumpSOAPIn
,甚至可以使用常规debug
选项。
对于SOAP代理,您可以这样设置:
proxy = SOAPProxy(...)
proxy.config.dumpSOAPOut = 1
proxy.config.dumpSOAPIn = 1
proxy.config.debug = 1
对于WSDL代理,您可以像以下这样使用它:
client = WSDL.Proxy(...)
client.soapproxy.config.dumpSOAPOut = 1
client.soapproxy.config.dumpSOAPIn = 1
client.soapproxy.config.debug = 1
请参阅此处您可以在配置中设置的一些额外选项:http://soappy.ooz.ie/p/config.html