I'm currently trying to receive a complex object from my datasnap server.
This object contains property of type : TList< AnAbstractClass > I populate this TList with classes inheriting from AnAbstractClass.
But client side , EConversionError occurs. if I replace TList< AnAbstractClass > by TList< AConcreteClass > everything is fine, so the problem is in inheritance.
Is there a mean to do that ?
rgds