我有现有代码处理来自suds.client.Client(...).service.GetFoo()
的输出。现在流的一部分已经改变,我们不再使用SOAP,而是通过其他渠道接收相同的XML。我想通过使用suds Typed unmarshaller重用现有代码,但到目前为止还没有成功。
我使用Basic unmarshaller 90%的方式来了:
tree = suds.umx.basic.Basic().process(xmlroot)
这给了我带有属性的漂亮的对象树,以便预先存在的代码可以访问tree[some_index].someAttribute
,但是值当然总是一个字符串,而不是一个整数或日期或者其他什么,所以代码仍然无法按原样重复使用。
原班:
class SomeService(object):
def __init__(self):
self.soap_client = Client(some_wsdl_url)
def GetStuff(self):
return self.soap_client.service.GetStuff()
几乎有效的替代品:
class SomeSourceUntyped(object):
def __init__(self):
self.url = some_url
def GetStuff(self):
xmlfile = urllib2.urlopen(self.url)
xmlroot = suds.sax.parser.Parser().parse(xmlfile)
if xmlroot:
# because the parser creates a document root above the document root
tree = suds.umx.basic.Basic().process(xmlroot)[0]
else:
tree = None
return tree
我徒劳地了解suds.umx.typed.Typed():
class SomeSourceTyped(object):
def __init__(self):
self.url = some_url
self.schema_file_name =
os.path.realpath(os.path.join(os.path.dirname(__file__),'schema.xsd'))
with open(self.schema_file_name) as f:
self.schema_node = suds.sax.parser.Parser().parse(f)
self.schema = suds.xsd.schema.Schema(self.schema_node, "", suds.options.Options())
self.schema_query = suds.xsd.query.ElementQuery(('http://example.com/namespace/','Stuff'))
self.xmltype = self.schema_query.execute(self.schema)
def GetStuff(self):
xmlfile = urllib2.urlopen(self.url)
xmlroot = suds.sax.parser.Parser().parse(xmlfile)
if xmlroot:
unmarshaller = suds.umx.typed.Typed(self.schema)
# I'm still running into an exception, so obviously something is missing:
# " Exception: (document, None, ), must be qref "
# Do I need to call the Parser differently?
tree = unmarshaller.process(xmlroot, self.xmltype)[0]
else:
tree = None
return tree
这是一个模糊的。
Bonus警告:当然我在使用suds 0.3.9的遗留系统中。
编辑:代码的进一步演变,找到了如何创建SchemaObject
s。