2009-09-30 38 views

回答

2

這是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() 
相關問題