I am using XML::DOM library to work with XML and XML::Validator::Schema to validate XML against XSD.
I having a problem to use 'xsd:any' in my XSD schema since XML::Validator::Schema not recognize this element.
<xsd:complexType>
<xsd:sequence minOccurs="1" maxOccurs="1">
<xsd:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
</xsd:sequence>
</xsd:complexType>
XML::Validator::Schema error -> Unrecognized element '<any>' found.
Is anyone meet this problem ?
How can i solve it ?
Is there is other solution to defined any element section with other element from 'xsd:any' ?
Thanks,
Pavel.