21 logging.basicConfig(level=logging.INFO)
22 logging.getLogger(
'suds.client').setLevel(logging.DEBUG)
23 logging.getLogger(
'suds.transport').setLevel(logging.DEBUG)
24 logging.getLogger(
'suds.xsd.schema').setLevel(logging.DEBUG)
25 logging.getLogger(
'suds.wsdl').setLevel(logging.DEBUG)
27 from suds.client
import Client
28 url =
'http://anathema.flux.utah.edu/wsdl/debuginfo.wsdl.local'
29 client = Client(url,cache=
None)
31 opts = client.factory.create(
'DebugFileOptsT')
32 opts.symbolRefDepth = 8
33 opts.scopeRefDepth = 8
34 opts.doMultiRef =
False
35 opts.doManualRef =
False
36 opts.debugfileRefDepth = 8
38 result = client.service.LookupSymbol(
'/usr/lib/debug/bin/yes.debug',
'main.argc',opts)