Differences in Framework 1.0 & 1.1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is anyone aware of differences in Framework 1.0 and 1.1 in the XmlValidatingReader class

Specifically in the way the Validation Event fires

I'm trying to validate an xml document in several parts so I broke my schemas apart. The first schema defines three high level nodes and the others define the detail elements of these three nodes. After instantiating an XmlValidatingReader class I loaded the first schema into the Schemas collection of the XmlValidatingReader and performed the ReadOuterXml method

In the 1.0 framework the event only fired when there was a problem with one of the three high level nodes
In the 1.1 framework all of the detail nodes within the xml document receive an error indicating that they were not declared

I've just upgraded this project from 1.0 to 1.1 so I'm trying to determine if this functionality changed

Thanks
 
Back
Top