调用Web Service方法时,如何显示ZSI.ServiceProxy生成的SOAP消息和Web Service的响应?
最佳答案
这是ServiceProxy类上的一些documentation。构造函数接受tracefile
参数,该参数可以是具有write
方法的任何对象,因此看起来就像您所追求的。从文档中修改示例:
from ZSI import ServiceProxy
import BabelTypes
import sys
dbgfile = open('dbgfile', 'w') # to log trace to a file, or
dbgfile = sys.stdout # to log trace to stdout
service = ServiceProxy('http://www.xmethods.net/sd/BabelFishService.wsdl',
tracefile=dbgfile,
typesmodule=BabelTypes)
value = service.BabelFish('en_de', 'This is a test!')
dbgfile.close()
关于python - 如何在Python中显示ZSI.ServiceProxy的出站和入站SOAP消息?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1497038/