При загрузке объекта polymorphi c в spyne 2.13.12 alpha0 возвращается ошибка spyne. Не могли бы вы взглянуть на следующий пример и указать, какую функцию следует использовать для загрузки объекта из файла xml?
import sys
from lxml import etree
from spyne.util import six
from spyne import ComplexModel, Unicode
from spyne.util.xml import get_object_as_xml_polymorphic, get_xml_as_object
class B(ComplexModel):
_type_info = {
'_b': Unicode,
}
def __init__(self):
super().__init__()
self._b = "b"
class C(B):
_type_info = {
'_c': Unicode,
}
def __init__(self):
super().__init__()
self._c = "c"
class A(ComplexModel):
_type_info = {
'_a': Unicode,
'_b': B,
}
def __init__(self, b=None):
super().__init__()
self._a = 'a'
self._b = b
a = A(b=C())
elt = get_object_as_xml_polymorphic(a, A, no_namespace=True)
xml_string = etree.tostring(elt, pretty_print=True)
if six.PY2:
print(xml_string, end="")
else:
sys.stdout.buffer.write(xml_string)
element_tree = etree.fromstring(xml_string)
new_a = get_xml_as_object(elt, A)
Ошибка в последней строке и сообщение
raise ValidationError(xsi_type)
spyne.error.ValidationError: ValidationError(Client.ValidationError: "The value 'C' could not be validated.")
Спасибо за помощь