Does MSXML4.0 handle xsi:nil
as
<Person xsi:noNamespaceSchemaLocation="rbs.xsd" xsi:nil="true" xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
and the schema is
<xsd:schema xmlns:xsd="htpp://www.w3.org/2001/XMLSchema">
<xsd:element name="Person" nillable="true">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Name" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
has anyone encountered the problem when validating the XML?
Thanks

