Why is XML Type = AnyType not supported by the Mendix platform?

0
As the title says, i'm wondering why AnyType is not supported by Mendix, just for understanding the limitations of the platform. I'm trying to import a schema from a wsdl, but certain attributes cannot be checked to be included in the XML schema as they are not supported.
asked
1 answers
3

It is true that we do not support xsd:AnyType in import or export because it is a special type that can act as a simple or complex type. It essentially does not have restrictions (think of it like java.lang.Object). Thus, we do not know how to make a mapping out of it. If you want to map it manually consider using 'Java Action' where you can take the content and parse it yourself to a Mendix object.

answered