I have an XSD with schema version 1.1, and I want to validate an XML against it programmatically via .NET and Java.
In .NET I use XmlSchemaSet
class to validate XML against XSD, but it throws the following exception:
`System.Xml.Schema.XmlSchemaException: The 'http://www.w3.org/2001/XMLSchema:assert' element is not supported in this context.
So I guess .NET still supports XSD 1.0 and doesn't support XSD 1.1 ?