[Gug-cvs] gug/gug/host/handler soap.py,1.19,1.20
Status: Planning
Brought to you by:
szferi
From: Roczei G. <ro...@us...> - 2007-06-26 14:51:52
|
Update of /cvsroot/gug/gug/gug/host/handler In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv16206 Modified Files: soap.py Log Message: SOAP debug off Index: soap.py =================================================================== RCS file: /cvsroot/gug/gug/gug/host/handler/soap.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** soap.py 26 Jun 2007 14:07:48 -0000 1.19 --- soap.py 26 Jun 2007 14:51:50 -0000 1.20 *************** *** 63,68 **** """ try: ! if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! log.msg('SOAP request:', data) # parse the SOAP message using ZSI's ParsedSoap class --- 63,68 ---- """ try: ! #if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! # log.msg('SOAP request:', data) # parse the SOAP message using ZSI's ParsedSoap class *************** *** 84,89 **** arguments = ps.Parse(MyAny(nillable = True)) ! if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! log.msg('arguments:', arguments) if isinstance(arguments,dict): --- 84,89 ---- arguments = ps.Parse(MyAny(nillable = True)) ! #if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! # log.msg('arguments:', arguments) if isinstance(arguments,dict): *************** *** 98,103 **** response = str(SoapWriter().serialize({'Response': result}, MyAny(nillable = True))) ! if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! log.msg('SOAP response:', response) except Exception, e: --- 98,103 ---- response = str(SoapWriter().serialize({'Response': result}, MyAny(nillable = True))) ! #if 'http://gug.grid.niif.hu/schemas/2007/06' in data: ! # log.msg('SOAP response:', response) except Exception, e: |