can i write a schema that all XML are valid to it ?
- by Gady
Hi,
i need to write a schema that all xml instances are valid to it.
i tried:
<xs:element name="Arguments">
<xs:complexType>
<xs:sequence>
<xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
</xs:sequence>
</xs:complexType>
but it enforces a root element named Arguments.
is there a way for the root to be Any ?