perhaps some bug in the soap library there? missing an import sys?
nodes = domobj.getElementsByTagName('definitions') if len(nodes) == 0: print "Couldn't find definitions tag!" sys.exit(1)
Not sure about the rest, but this should be imported as: Code: from ZSI.ServiceProxy import ServiceProxy
from ZSI.ServiceProxy import ServiceProxy
Ah - and httplib should be without "http://...": Code: httpServ = httplib.HTTPConnection("192.168.1.72", 80)
httpServ = httplib.HTTPConnection("192.168.1.72", 80)